Skip to content

Commit daa2d10

Browse files
authored
feat(elt): Allow ELT task log level to be configured externally (#170)
### Summary Lower default log level for ELT tasks to INFO and allow it to be overridden. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Updated default log level from DEBUG to INFO. Log verbosity is now configurable via environment variable for operational flexibility. <sub>✏️ Tip: You can customize this high-level summary in your review settings.</sub> <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent dfb9c99 commit daa2d10

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

infra/ansible-docker/playbooks/elt/templates/cron/elt_task.sh.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ELT_SECRETS=${ELT_SECRETS:?}
66
ELT_GIT_REF=${ELT_GIT_REF:-main}
77
ELT_WRITE_DISPOSITION=${ELT_WRITE_DISPOSITION:-}
88
EXTRACT_AND_LOAD_SCRIPT=extract_and_load.py
9-
LOG_LEVEL=DEBUG
9+
LOG_LEVEL=${ELT_LOG_LEVEL:-INFO}
1010
ON_PIPELINE_FAILURE=log_and_continue
1111
DBT_REQUIREMENTS_TXT=requirements.txt
1212

0 commit comments

Comments
 (0)