We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b00eab commit 6d61d6cCopy full SHA for 6d61d6c
src/uipath/runtime/context.py
@@ -329,9 +329,7 @@ def with_defaults(
329
330
# Apply defaults from env
331
base.job_id = os.environ.get("UIPATH_JOB_KEY")
332
- base.log_to_file = (
333
- os.environ.get("UIPATH_LOG_TO_FILE", "").lower() == "true"
334
- )
+ base.log_to_file = os.environ.get("UIPATH_LOG_TO_FILE", "").lower() == "true"
335
base.logs_min_level = os.environ.get("LOG_LEVEL", "INFO")
336
base.org_id = os.environ.get("UIPATH_ORGANIZATION_ID")
337
base.tenant_id = os.environ.get("UIPATH_TENANT_ID")
0 commit comments