mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-02-14 18:20:31 +00:00
chore: reduce traceback verbosity
This commit is contained in:
@@ -33,7 +33,7 @@ class FtRichHandler(Handler):
|
||||
tb = None
|
||||
if record.exc_info:
|
||||
exc_type, exc_value, exc_traceback = record.exc_info
|
||||
tb = Traceback.from_exception(exc_type, exc_value, exc_traceback)
|
||||
tb = Traceback.from_exception(exc_type, exc_value, exc_traceback, extra_lines=1)
|
||||
self._console.print(tb)
|
||||
|
||||
self.flush()
|
||||
|
||||
Reference in New Issue
Block a user