prefer LOG.debug to System.err.println
Signed-off-by: olivier lamy <olamy@webtide.com>
This commit is contained in:
parent
a654c7c9e5
commit
970cec230b
|
@ -292,7 +292,10 @@ public class PropertyUserStore extends UserStore implements PathWatcher.Listener
|
|||
{
|
||||
try
|
||||
{
|
||||
System.err.println("PATH WATCH EVENT: "+event.getType());
|
||||
if (LOG.isDebugEnabled())
|
||||
{
|
||||
LOG.debug( "PATH WATCH EVENT: {}", event.getType() );
|
||||
}
|
||||
loadUsers();
|
||||
}
|
||||
catch (IOException e)
|
||||
|
|
Loading…
Reference in New Issue