We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74dbad0 commit b5a9f8cCopy full SHA for b5a9f8c
robotcode/utils/logging.py
@@ -303,7 +303,9 @@ def __repr__(self) -> str:
303
"ROBOT_CALL_TRACING_ENABLED" in os.environ and os.environ["ROBOT_CALL_TRACING_ENABLED"] != "0"
304
)
305
_call_tracing_default_level = (
306
- os.environ["ROBOT_CALL_TRACING_LEVEL"] if "ROBOT_CALL_TRACING_LEVEL" in os.environ else TRACE
+ logging.getLevelName(os.environ["ROBOT_CALL_TRACING_LEVEL"])
307
+ if "ROBOT_CALL_TRACING_LEVEL" in os.environ
308
+ else TRACE
309
310
311
@classmethod
0 commit comments