mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-21 18:44:19 +00:00
Print full error on service crash
This commit is contained in:
parent
d77da93151
commit
35372b24bd
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ pub trait RoyalnetService {
|
||||||
|
|
||||||
match result {
|
match result {
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
log::error!("Service exited with error: {e:?}.")
|
log::error!("Service exited with error: {e:#?}.")
|
||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
log::debug!("Service exited successfully!")
|
log::debug!("Service exited successfully!")
|
||||||
|
|
Loading…
Reference in a new issue