minor: remove noisy useless debug message

This commit is contained in:
hroff-1902 2019-05-20 12:27:30 +03:00
parent 46b347b661
commit e7b9bc6808
1 changed files with 0 additions and 1 deletions

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)