Reduce loglevel of "using cached rate"

This commit is contained in:
Matthias 2020-08-23 19:14:28 +02:00
parent 92d8adf36c
commit ec94961437
1 changed files with 2 additions and 2 deletions

View File

@ -275,7 +275,7 @@ class FreqtradeBot:
rate = self._buy_rate_cache.get(pair)
# Check if cache has been invalidated
if rate:
logger.info(f"Using cached buy rate for {pair}.")
logger.debug(f"Using cached buy rate for {pair}.")
return rate
bid_strategy = self.config.get('bid_strategy', {})
@ -693,7 +693,7 @@ class FreqtradeBot:
rate = self._sell_rate_cache.get(pair)
# Check if cache has been invalidated
if rate:
logger.info(f"Using cached sell rate for {pair}.")
logger.debug(f"Using cached sell rate for {pair}.")
return rate
ask_strategy = self.config.get('ask_strategy', {})