Skip to content

Commit

Permalink
chore(service-executor): log error in shim when service not found ins…
Browse files Browse the repository at this point in the history
…tead of println
  • Loading branch information
snormore committed May 23, 2024
1 parent 7545c38 commit bb49391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/service-executor/src/shim.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ impl<C: Collection> ServiceExecutorInterface<C> for ServiceExecutor<C> {
1001 => {
crate::test_services::io_stress::main();
},
_ => eprintln!("Service {id} not found."),
_ => error!("Service {id} not found."),
}
}
}
Expand Down

0 comments on commit bb49391

Please sign in to comment.