From 60b2b68bc38b80e3a5588920ed3fccf6cc05aec2 Mon Sep 17 00:00:00 2001 From: Gert Wohlgemuth Date: Sun, 13 May 2018 15:27:31 -0700 Subject: [PATCH] switched print to logger.debug --- config.json.example | 2 +- freqtrade/analyze.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.json.example b/config.json.example index 63530d936..eb81ef513 100644 --- a/config.json.example +++ b/config.json.example @@ -5,7 +5,7 @@ "fiat_display_currency": "USD", "dry_run": false, "trailing_stop": { - "positive" : 0.01 + "positive" : 0.005 }, "unfilledtimeout": 600, "bid_strategy": { diff --git a/freqtrade/analyze.py b/freqtrade/analyze.py index 7de3e95b2..2934d28dd 100644 --- a/freqtrade/analyze.py +++ b/freqtrade/analyze.py @@ -224,7 +224,7 @@ class Analyze(object): 'positive' in self.config['trailing_stop'] and \ current_profit > 0: - print("using positive stop loss mode: {} since we have profit {}".format( + logger.debug("using positive stop loss mode: {} since we have profit {}".format( self.config['trailing_stop']['positive'], current_profit)) stop_loss_value = self.config['trailing_stop']['positive']