restore-daemon: fix use of deprecated env_logger::from_env function

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-12-16 11:12:36 +01:00
parent ff6b6cd74d
commit 25e41aa802
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ fn main() -> Result<(), Error> {
// don't have a real syslog (and no persistance), so use env_logger to print to a log file (via
// stdout to a serial terminal attached by QEMU)
env_logger::from_env(env_logger::Env::default().default_filter_or("info"))
env_logger::Builder::from_env(env_logger::Env::default().default_filter_or("info"))
.write_style(env_logger::WriteStyle::Never)
.format_timestamp_millis()
.init();