From 127edfcc6debf51c8100157071d837cc5fdad69c Mon Sep 17 00:00:00 2001
From: Roland Haeder <roland@mxchange.org>
Date: Sat, 7 May 2016 16:34:30 +0200
Subject: [PATCH] these are noisy debug lines ...

---
 .../validator/booleans/UserProfileVisibilityValidator.java    | 4 ++--
 .../addressbook/validator/names/AddressbookNameValidator.java | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

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
 	}
 }
-- 
2.39.5