Skip to content

Commit bb49391

Browse files
committed
chore(service-executor): log error in shim when service not found instead of println
1 parent 7545c38 commit bb49391

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/service-executor/src/shim.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ impl<C: Collection> ServiceExecutorInterface<C> for ServiceExecutor<C> {
127127
1001 => {
128128
crate::test_services::io_stress::main();
129129
},
130-
_ => eprintln!("Service {id} not found."),
130+
_ => error!("Service {id} not found."),
131131
}
132132
}
133133
}

0 commit comments

Comments
 (0)