docs: improve error message

main
_ 2024-01-21 19:47:57 -06:00
parent 649e52bfe1
commit 804ab9d8ff
1 changed files with 3 additions and 3 deletions

View File

@ -2,11 +2,11 @@
use std::{
convert::TryFrom,
error::Error,
path::PathBuf,
sync::Arc,
};
use anyhow::Context;
use clap::{App, SubCommand};
use tracing_subscriber::{
fmt,
@ -21,7 +21,7 @@ use ptth_relay::{
};
#[tokio::main]
async fn main () -> Result <(), Box <dyn Error>> {
async fn main () -> anyhow::Result<()> {
fmt ()
.with_env_filter (EnvFilter::from_default_env ())
.with_span_events (FmtSpan::CLOSE)
@ -48,7 +48,7 @@ async fn main () -> Result <(), Box <dyn Error>> {
}
let config_path = PathBuf::from ("config/ptth_relay.toml");
let config = Config::from_file (&config_path).await?;
let config = Config::from_file (&config_path).await.context("couldn't load ptth_relay.toml")?;
let (shutdown_rx, forced_shutdown) = ptth_core::graceful_shutdown::init_with_force ();