log messages aligned
This commit is contained in:
parent
a65c89f090
commit
ee113ab8ed
@ -397,20 +397,19 @@ class Configuration(object):
|
|||||||
f'{", ".join(available_exchanges())}'
|
f'{", ".join(available_exchanges())}'
|
||||||
)
|
)
|
||||||
|
|
||||||
logger.info(f'Exchange "{exchange}" is supported by ccxt '
|
|
||||||
f'and therefore available for the bot.')
|
|
||||||
|
|
||||||
if is_exchange_officially_supported(exchange):
|
|
||||||
logger.info(f'Exchange "{exchange}" is officially supported '
|
|
||||||
f'by the Freqtrade development team.')
|
|
||||||
else:
|
|
||||||
logger.warning(f'Exchange "{exchange}" is not officially supported. '
|
|
||||||
f'It may work flawlessly (please report back) or have serious issues. '
|
|
||||||
f'Use it at your own discretion.')
|
|
||||||
|
|
||||||
if check_for_bad and is_exchange_bad(exchange):
|
if check_for_bad and is_exchange_bad(exchange):
|
||||||
logger.warning(f'Exchange "{exchange}" is known to not work with the bot yet. '
|
logger.warning(f'Exchange "{exchange}" is known to not work with the bot yet. '
|
||||||
f'Use it only for development and testing purposes.')
|
f'Use it only for development and testing purposes.')
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
if is_exchange_officially_supported(exchange):
|
||||||
|
logger.info(f'Exchange "{exchange}" is officially supported '
|
||||||
|
f'by the Freqtrade development team.')
|
||||||
|
else:
|
||||||
|
logger.warning(f'Exchange "{exchange}" is supported by ccxt '
|
||||||
|
f'and therefore available for the bot but not officially supported '
|
||||||
|
f'by the Freqtrade development team. '
|
||||||
|
f'It may work flawlessly (please report back) or have serious issues. '
|
||||||
|
f'Use it at your own discretion.')
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
Loading…
Reference in New Issue
Block a user