Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Commit

Permalink
Log at debug level in commands/monitor
Browse files Browse the repository at this point in the history
Signed-off-by: Alin Dreghiciu <adreghiciu@gmail.com>
  • Loading branch information
adreghiciu authored and cstamas committed Nov 21, 2012
1 parent c96cb8b commit 6261956
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Expand Up @@ -87,7 +87,7 @@ public CommandMonitorThread( final int port, final Command... commands )
@Override
public void run()
{
log.info( "Listening for commands: {}", socket );
log.debug( "Listening for commands: {}", socket );

boolean running = true;
while ( running )
Expand Down Expand Up @@ -131,7 +131,7 @@ public void run()
// ignore
}

log.info( "Stopped" );
log.debug( "Stopped" );
}

/**
Expand Down
Expand Up @@ -48,7 +48,7 @@ public String getId()
@Override
public boolean execute()
{
log.info( "Requesting application stop" );
log.debug( "Requesting application stop" );
shutdown.run();

// Do not terminate the monitor on application stop, leave that to the jvm death
Expand Down
Expand Up @@ -37,7 +37,7 @@ public String getId()
@Override
public boolean execute()
{
log.info( "Requesting monitor stop" );
log.debug( "Requesting monitor stop" );
return true;
}

Expand Down

0 comments on commit 6261956

Please sign in to comment.