summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index a1b04d4..99374eb 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -69,7 +69,7 @@ async fn main() -> anyhow::Result<()> {
let state = state.clone();
tokio::spawn(async move {
if let Err(e) = serve_http(state).await {
- error!("{e}");
+ error!("{e:?}");
exit(1)
}
});
@@ -78,7 +78,7 @@ async fn main() -> anyhow::Result<()> {
let state = state.clone();
tokio::spawn(async move {
if let Err(e) = serve_https(state).await {
- error!("{e}");
+ error!("{e:?}");
exit(1)
}
});