refactor: add timezone support to wait_infinity, improve MQTT updates in config mode, and minor cleanup

This commit is contained in:
2026-04-16 20:42:08 +02:00
parent 6a71ac4234
commit b740574c68
3 changed files with 30 additions and 12 deletions

View File

@@ -34,8 +34,7 @@ impl InterceptorLogger {
}
pub fn init(&'static self) {
match log::set_logger(self)
.map(|()| log::set_max_level(LevelFilter::Info)) {
match log::set_logger(self).map(|()| log::set_max_level(LevelFilter::Info)) {
Ok(()) => {}
Err(e) => {
error!("Logger already set: {}", e);