We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8ba25e commit 8009824Copy full SHA for 8009824
1 file changed
crates/fluxqueue-worker/src/logger.rs
@@ -42,7 +42,9 @@ pub fn initial_logs(
42
info!("Redis: {}", redis_url);
43
info!("Tasks module: {}", tasks_module_path);
44
info!("Tasks found: {:?}", tasks);
45
- info!("Contexts found: {:?}", contexts);
+ if contexts.len() > 0 {
46
+ info!("Contexts found: {:?}", contexts);
47
+ }
48
info!("Starting up the executors...");
49
}
50
0 commit comments