fix(a11y): wrong name in log

This commit is contained in:
crsct 2025-10-03 15:28:50 +02:00 committed by GitHub
parent d2e080427f
commit cec55dafd7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,7 +7,7 @@ fn main() -> cosmic::iced::Result {
tracing_subscriber::fmt::init();
let _ = tracing_log::LogTracer::init();
tracing::info!("Starting battery applet with version {VERSION}");
tracing::info!("Starting accessibility applet with version {VERSION}");
cosmic_applet_a11y::run()
}