mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
Fixes/recover dying during starting (#1224)
* fix: Fix the panic becaues of the double install logging Co-authored-by: Aiden McClelland <dr-bonez@users.noreply.github.com> * fix: Clippy fix for docker * chore: Add notification on top of error Co-authored-by: Aiden McClelland <dr-bonez@users.noreply.github.com>
This commit is contained in:
@@ -20,7 +20,7 @@ impl EmbassyLogger {
|
||||
}
|
||||
pub fn init() -> Self {
|
||||
Self::base_subscriber().init();
|
||||
color_eyre::install().expect("Color Eyre Init");
|
||||
color_eyre::install().unwrap_or_else(|_| tracing::warn!("tracing too many times"));
|
||||
|
||||
EmbassyLogger {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user