]> git.mxchange.org Git - jphone-core.git/commitdiff
these are noisy debug lines ...
authorRoland Haeder <roland@mxchange.org>
Sat, 7 May 2016 14:34:14 +0000 (16:34 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 7 May 2016 14:34:14 +0000 (16:34 +0200)
src/org/mxchange/jphone/validators/PhoneNumberValidator.java

index 7df415aa0cd60fae3542aa6cdb99fb5d7765dead..a6305eadf5ecb61b1cfe37ae762a119c67a28011 100644 (file)
@@ -38,7 +38,7 @@ public class PhoneNumberValidator extends BaseLongValidator implements Validator
        @Override
        public void validate (final FacesContext context, final UIComponent component, final Object value) {
                // 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 = {"phoneAreaCode", "phoneNumber", "faxAreaCode", "faxNumber", "cellphoneNumber"}; //NOI18N
@@ -47,6 +47,6 @@ public class PhoneNumberValidator extends BaseLongValidator implements Validator
                super.preValidate(context, component, value, requiredFields, true);
 
                // Trace message
-               //this.getLogger().logTrace("validate: EXIT!"); //NOI18N
+               //* NOISY-DEBUG: */ System.out.println("validate: EXIT!"); //NOI18N
        }
 }