feat: Try log panics before unwinds to catch backtraces

This commit is contained in:
Jade Ellis
2026-02-05 16:44:51 +00:00
committed by Ellis Git
parent f243b383cb
commit f6df44b13f
2 changed files with 37 additions and 0 deletions
+3
View File
@@ -7,6 +7,7 @@ use conduwuit_core::{debug_info, error};
mod clap;
mod logging;
mod mods;
mod panic;
mod restart;
mod runtime;
mod sentry;
@@ -19,6 +20,8 @@ use server::Server;
pub use crate::clap::Args;
pub fn run() -> Result<()> {
panic::init();
let args = clap::parse();
run_with_args(&args)
}