Add panic hook to log panics

This commit is contained in:
Louis Dureuil 2024-02-07 17:29:40 +01:00
parent c443ed7e3f
commit d71b77f18b
No known key found for this signature in database

View File

@ -48,10 +48,17 @@ fn setup(opt: &Opt) -> anyhow::Result<LogRouteHandle> {
Ok(route_layer_handle)
}
fn on_panic(info: &std::panic::PanicInfo) {
let info = info.to_string().replace('\n', " ");
tracing::error!(%info);
}
#[actix_web::main]
async fn main() -> anyhow::Result<()> {
let (opt, config_read_from) = Opt::try_build()?;
std::panic::set_hook(Box::new(on_panic));
anyhow::ensure!(
!(cfg!(windows) && opt.experimental_reduce_indexing_memory_usage),
"The `experimental-reduce-indexing-memory-usage` flag is not supported on Windows"