From 26ba82f8aa6e4d38836bec7078f363da9ea0cbf8 Mon Sep 17 00:00:00 2001 From: Stephan Schwär Date: Thu, 8 Oct 2020 13:56:34 +0900 Subject: Change ovf classes logger output to debug --- src/main/java/org/openslx/util/vm/OvfConfig.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/java/org/openslx/util/vm/OvfConfig.java') 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 ) { -- cgit v1.2.3-55-g7522