Allow lower verbosity level for api server

Not logging all calls makes sense when running the UI
otherwise this is VERY verbose, clogging up the log.
This commit is contained in:
Matthias
2020-05-31 09:51:45 +02:00
parent 84c50bf16c
commit 7ad1c7e817
6 changed files with 10 additions and 5 deletions

View File

@@ -360,7 +360,6 @@ class ApiServer(RPC):
Returns a cumulative profit statistics
:return: stats
"""
logger.info("LocalRPC - Profit Command Called")
stats = self._rpc_trade_statistics(self._config['stake_currency'],
self._config.get('fiat_display_currency')
@@ -377,8 +376,6 @@ class ApiServer(RPC):
Returns a cumulative performance statistics
:return: stats
"""
logger.info("LocalRPC - performance Command Called")
stats = self._rpc_performance()
return self.rest_dump(stats)