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 6da2c87 commit 758df87Copy full SHA for 758df87
1 file changed
rust/operator-binary/src/main.rs
@@ -64,8 +64,10 @@ async fn main() -> anyhow::Result<()> {
64
cluster_info_opts,
65
}) => {
66
let _tracing_guard = Tracing::builder()
67
+ // TODO (@Techassi): This should be a constant
68
.service_name("airflow-operator")
69
.with_console_output((
70
+ // TODO (@Techassi): Change to CONSOLE_LOG, create constant
71
"AIRFLOW_OPERATOR_LOG",
72
LevelFilter::INFO,
73
!telemetry_arguments.no_console_output,
@@ -81,6 +83,7 @@ async fn main() -> anyhow::Result<()> {
81
83
.clone();
82
84
85
Settings::builder()
86
+ // TODO (@Techassi): Change to CONSOLE_LOG or FILE_LOG, create constant
87
.with_environment_variable("AIRFLOW_OPERATOR_LOG")
88
.with_default_level(LevelFilter::INFO)
89
.file_log_settings_builder(log_directory, "tracing-rs.log")
0 commit comments