summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/util/vm/OvfConfig.java
diff options
context:
space:
mode:
authorStephan Schwär2020-10-08 06:56:34 +0200
committerStephan Schwär2020-10-08 06:56:34 +0200
commit26ba82f8aa6e4d38836bec7078f363da9ea0cbf8 (patch)
treecbb0bd65ac33e81d8e93f33bd2f7fbbfa90bed2a /src/main/java/org/openslx/util/vm/OvfConfig.java
parentImprove comments describing new classes and cleanup (diff)
downloadmaster-sync-shared-26ba82f8aa6e4d38836bec7078f363da9ea0cbf8.tar.gz
master-sync-shared-26ba82f8aa6e4d38836bec7078f363da9ea0cbf8.tar.xz
master-sync-shared-26ba82f8aa6e4d38836bec7078f363da9ea0cbf8.zip
Change ovf classes logger output to debug
Diffstat (limited to 'src/main/java/org/openslx/util/vm/OvfConfig.java')
-rw-r--r--src/main/java/org/openslx/util/vm/OvfConfig.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/org/openslx/util/vm/OvfConfig.java b/src/main/java/org/openslx/util/vm/OvfConfig.java
index df8b0ca..a7a5c75 100644
--- a/src/main/java/org/openslx/util/vm/OvfConfig.java
+++ b/src/main/java/org/openslx/util/vm/OvfConfig.java
@@ -36,13 +36,13 @@ public class OvfConfig {
private Document doc = null;
public OvfConfig(File file) throws IOException, UnsupportedVirtualizerFormatException {
- LOGGER.info("Entering OvfConfig class creation");
+ LOGGER.debug("Entering OvfConfig class creation");
doc = XmlHelper.parseDocumentFromStream(new FileInputStream(file));
doc = XmlHelper.removeFormattingNodes(doc);
if (doc == null)
throw new UnsupportedVirtualizerFormatException(
"Could not create DOM from given ovf machine configuration file!");
- LOGGER.info("DOM creation worked");
+ LOGGER.debug("DOM creation worked");
init();
}
@@ -53,11 +53,11 @@ public class OvfConfig {
* @throws UnsupportedVirtualizerFormatException
*/
private void init() throws UnsupportedVirtualizerFormatException {
- LOGGER.info("Entering OvfConfig init");
+ LOGGER.debug("Entering OvfConfig init");
if (Util.isEmptyString(getDisplayName())) {
throw new UnsupportedVirtualizerFormatException("Machine doesn't have a name");
}
- LOGGER.info(getDisplayName());
+ LOGGER.debug(getDisplayName());
// try {
// setHdds();
// } catch ( XPathExpressionException e ) {