Log instead of print to stdout

This commit is contained in:
Laurent Clouet
2015-08-05 21:15:39 +01:00
parent 2560a2d4d2
commit c5033faab2

View File

@@ -360,12 +360,12 @@ public class Client {
}
public void askForStop() {
System.out.println("Client::askForStop");
this.log.debug("Client::askForStop");
this.running = false;
}
public void cancelStop() {
System.out.println("Client::cancelStop");
this.log.debug("Client::cancelStop");
this.running = true;
}