mirror of
https://github.com/jetty/jetty.project.git
synced 2025-03-03 04:19:12 +00:00
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…
x
Reference in New Issue
Block a user