From: Roland Haeder Date: Sat, 7 May 2016 14:34:14 +0000 (+0200) Subject: these are noisy debug lines ... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6e22e63704c3f942fb94d2c9835ba3e5e3944564;p=jphone-core.git these are noisy debug lines ... --- diff --git a/src/org/mxchange/jphone/validators/PhoneNumberValidator.java b/src/org/mxchange/jphone/validators/PhoneNumberValidator.java index 7df415a..a6305ea 100644 --- a/src/org/mxchange/jphone/validators/PhoneNumberValidator.java +++ b/src/org/mxchange/jphone/validators/PhoneNumberValidator.java @@ -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 } }