From: Roland Haeder Date: Sat, 7 May 2016 14:34:30 +0000 (+0200) Subject: these are noisy debug lines ... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=127edfcc6debf51c8100157071d837cc5fdad69c;p=jfinancials-lib.git these are noisy debug lines ... --- diff --git a/src/org/mxchange/addressbook/validator/booleans/UserProfileVisibilityValidator.java b/src/org/mxchange/addressbook/validator/booleans/UserProfileVisibilityValidator.java index e044289..c56ab48 100644 --- a/src/org/mxchange/addressbook/validator/booleans/UserProfileVisibilityValidator.java +++ b/src/org/mxchange/addressbook/validator/booleans/UserProfileVisibilityValidator.java @@ -39,7 +39,7 @@ public class UserProfileVisibilityValidator extends BaseBooleanValidator impleme @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 // All accepted, required fields String[] requiredFields = {"publicUserProfileFlag"}; //NOI18N @@ -48,7 +48,7 @@ public class UserProfileVisibilityValidator extends BaseBooleanValidator impleme super.preValidate(context, component, value, requiredFields, false); // Trace message - //this.getLogger().logTrace("validate: EXIT!"); //NOI18N + //* NOISY-DEBUG: */ System.out.println("validate: EXIT!"); //NOI18N } } diff --git a/src/org/mxchange/addressbook/validator/names/AddressbookNameValidator.java b/src/org/mxchange/addressbook/validator/names/AddressbookNameValidator.java index 0f88381..ea6b426 100644 --- a/src/org/mxchange/addressbook/validator/names/AddressbookNameValidator.java +++ b/src/org/mxchange/addressbook/validator/names/AddressbookNameValidator.java @@ -39,7 +39,7 @@ public class AddressbookNameValidator extends BaseStringValidator implements Val @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 // All accepted, required fields String[] requiredFields = {"addressbookName"}; //NOI18N @@ -48,6 +48,6 @@ public class AddressbookNameValidator extends BaseStringValidator implements Val super.preValidate(context, component, value, requiredFields, false); // Trace message - //this.getLogger().logTrace("validate: EXIT!"); //NOI18N + //* NOISY-DEBUG: */ System.out.println("validate: EXIT!"); //NOI18N } }