We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f9f348 commit 7d01a3fCopy full SHA for 7d01a3f
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