]> git.mxchange.org Git - pizzaservice-war.git/blobdiff - src/java/org/mxchange/pizzaapplication/BasePizzaServiceSystem.java
Added more thrown exceptions
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / BasePizzaServiceSystem.java
index e85b321e09f6ff025439435419450336f06def10..031f2f92997823dd4d4470b6bef28abd46210933 100644 (file)
@@ -42,6 +42,9 @@ public class BasePizzaServiceSystem extends BaseFrameworkSystem {
                        // Get value
                        String value = context.getInitParameter(name);
 
+                       // Debug message
+                       this.getLogger().debug(MessageFormat.format("value={0}", value));
+
                        // Is it null?
                        if (value == null) {
                                // Value is null
@@ -52,7 +55,7 @@ public class BasePizzaServiceSystem extends BaseFrameworkSystem {
                        }
 
                        // Debug log
-                       this.getLogger().debug(MessageFormat.format("{0}={1}", name, value.trim()));
+                       this.getLogger().debug(MessageFormat.format("{0}={1}", name, value));
 
                        // Set property
                        this.setProperty(name, value);