summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/util
diff options
context:
space:
mode:
authorVictor Mocanu2017-10-24 12:26:44 +0200
committerVictor Mocanu2017-10-24 12:26:44 +0200
commit1eaf7c0b8df01d6d988aacd6cb43661fb482f1a1 (patch)
tree048e0aa21eddc83b214c12016e9365cf1199cb8c /src/main/java/org/openslx/util
parent[VBox] improved download part (diff)
downloadmaster-sync-shared-1eaf7c0b8df01d6d988aacd6cb43661fb482f1a1.tar.gz
master-sync-shared-1eaf7c0b8df01d6d988aacd6cb43661fb482f1a1.tar.xz
master-sync-shared-1eaf7c0b8df01d6d988aacd6cb43661fb482f1a1.zip
[VBox] changed logger.warn messages from german to english
Diffstat (limited to 'src/main/java/org/openslx/util')
-rw-r--r--src/main/java/org/openslx/util/vm/VboxConfig.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/java/org/openslx/util/vm/VboxConfig.java b/src/main/java/org/openslx/util/vm/VboxConfig.java
index d4db21d..6c6a487 100644
--- a/src/main/java/org/openslx/util/vm/VboxConfig.java
+++ b/src/main/java/org/openslx/util/vm/VboxConfig.java
@@ -139,7 +139,7 @@ public class VboxConfig
removeBlackListedTags();
addPlaceHolders();
} catch ( XPathExpressionException e ) {
- LOGGER.debug( "Konnte VBoxConfig nicht initializieren", e );
+ LOGGER.debug( "Could not initialize VBoxConfig", e );
return;
}
}
@@ -276,7 +276,7 @@ public class VboxConfig
Object nodesObject = expr.evaluate( this.doc, XPathConstants.NODESET );
nodes = (NodeList)nodesObject;
} catch ( XPathExpressionException e ) {
- LOGGER.error( "Path konnte nicht gebaut werden", e );
+ LOGGER.error( "Could not build path", e );
}
return nodes;
}
@@ -318,7 +318,7 @@ public class VboxConfig
}
} else {
if ( nodes.getLength() > 1 ) {
- LOGGER.error( "Aktion würde an mehreren Knotten die Value ändern; unterbrochen!" );
+ LOGGER.error( "Action would change values of more than one node; stopped!" );
return;
}
element.setAttribute( targetAttr, newValue );
@@ -329,7 +329,7 @@ public class VboxConfig
public void addAttributeToNode( Node targetNode, String attrName, String value )
{
if ( targetNode == null ) {
- LOGGER.warn( "Knotten ist null; unterbrochen!" );
+ LOGGER.warn( "Node is null; stopped!" );
return;
}
( (Element)targetNode ).setAttribute( attrName, value );
@@ -347,7 +347,7 @@ public class VboxConfig
if ( posibleParents.getLength() > 1 ) {
// if we have more then 1 parent we need to have an sanityArg s.t. we insert our new attribute in the right tag
if ( refAttr == null ) {
- LOGGER.warn( "Aktion würde an mehreren Knotten einen neuen Knoten hinzufügen; unterbrochen!" );
+ LOGGER.warn( "Action would change values of more than one node; stopped!" );
return null;
}
for ( int i = 1; i < posibleParents.getLength(); i++ ) {