From c5033faab292ac3f4f69035a372ee1d29a8e1cb4 Mon Sep 17 00:00:00 2001 From: Laurent Clouet Date: Wed, 5 Aug 2015 21:15:39 +0100 Subject: [PATCH] Log instead of print to stdout --- src/com/sheepit/client/Client.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/sheepit/client/Client.java b/src/com/sheepit/client/Client.java index 0294ff7..24a6bb2 100644 --- a/src/com/sheepit/client/Client.java +++ b/src/com/sheepit/client/Client.java @@ -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; }