Merge pull request #1866 from hroff-1902/persist-debug

minor: remove noisy useless debug message
This commit is contained in:
Matthias 2019-05-20 12:16:57 +02:00 committed by GitHub
commit 5d93946365
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -238,7 +238,6 @@ class Trade(_DECL_BASE):
"""
Adjust the max_rate and min_rate.
"""
logger.debug("Adjusting min/max rates")
self.max_rate = max(current_price, self.max_rate or self.open_rate)
self.min_rate = min(current_price, self.min_rate or self.open_rate)