Use proper logging (using the Filter's logger)

This commit is contained in:
hroff-1902
2020-05-19 23:51:39 +03:00
parent e96e28df07
commit 696c7e87f2
3 changed files with 10 additions and 12 deletions

View File

@@ -115,7 +115,7 @@ class VolumePairList(IPairList):
# Validate whitelist to only have active market pairs
pairs = self._whitelist_for_active_markets([s['symbol'] for s in sorted_tickers])
pairs = self.verify_blacklist(pairs)
pairs = self.verify_blacklist(pairs, logger.info)
# Limit pairlist to the requested number of pairs
pairs = pairs[:self._number_pairs]