Fix dbus-proxy log filter to match actual crate name
The EnvFilter targeted `vmsilo_tray` (a stale name) instead of `vmsilo_dbus_proxy`, causing all log output to be silently dropped. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
feb3012469
commit
626007760a
1 changed files with 1 additions and 1 deletions
|
|
@ -24,6 +24,6 @@ impl LogLevel {
|
|||
|
||||
pub fn init_logging(level: LogLevel) {
|
||||
let filter = EnvFilter::try_from_default_env()
|
||||
.unwrap_or_else(|_| EnvFilter::new(format!("vmsilo_tray={}", level.as_str())));
|
||||
.unwrap_or_else(|_| EnvFilter::new(format!("vmsilo_dbus_proxy={}", level.as_str())));
|
||||
let _ = tracing_subscriber::fmt().with_env_filter(filter).try_init();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue