]> git.mxchange.org Git - addressbook-war.git/commitdiff
these are noisy debug lines ...
authorRoland Haeder <roland@mxchange.org>
Sat, 7 May 2016 14:34:27 +0000 (16:34 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 7 May 2016 14:34:27 +0000 (16:34 +0200)
src/java/org/mxchange/addressbook/beans/contact/AddressbookContactWebSessionBean.java
src/java/org/mxchange/addressbook/validators/password/AddressbookUserPasswordValidator.java

index e5e360ef8e0e6214298ab5d3282cc4c5c7810e80..5e2010d63b38c72a637f255e6aba8b0a6224a908 100644 (file)
@@ -467,7 +467,7 @@ public class AddressbookContactWebSessionBean implements AddressbookContactWebSe
                contact.setContactOwnContact(Boolean.TRUE);
 
                // Trace message
-               //this.getLogger().logTrace(MessageFormat.format("createContactInstance: localContact={0} - EXIT!", localContact));
+               //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("createContactInstance: localContact={0} - EXIT!", localContact));
                // Return it
                return localContact;
        }
index 44ecda37f54b8a73b0ad591c0da8ab9acd29f937..c2f2ac62d7b429b892150d022d1cfa397ed71708 100644 (file)
@@ -51,7 +51,7 @@ public class AddressbookUserPasswordValidator extends BaseStringValidator implem
        @Override
        public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
                // Trace message
-               //this.getLogger().logTrace(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N
+               //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N
 
                // The required field
                String[] requiredFields = {"currentPassword"}; //NOI18N
@@ -69,6 +69,6 @@ public class AddressbookUserPasswordValidator extends BaseStringValidator implem
                }
 
                // Trace message
-               //this.getLogger().logTrace("validate: EXIT!"); //NOI18N
+               //* NOISY-DEBUG: */ System.out.println("validate: EXIT!"); //NOI18N
        }
 }