Skip to content

Commit 2a02351

Browse files
author
Andrew
committed
metaconfig 7
1 parent f2479a1 commit 2a02351

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dsc/src/util.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,14 +300,14 @@ pub fn enable_tracing(trace_level_arg: Option<TraceLevel>, trace_format_arg: Opt
300300
tracing_setting = v;
301301
policy_is_used = true;
302302
},
303-
Err(e) => { println!("{}", e); }
303+
Err(e) => { println!("{e}"); }
304304
}
305305
} else if v.setting != serde_json::Value::Null {
306306
match serde_json::from_value::<TracingSetting>(v.setting) {
307307
Ok(v) => {
308308
tracing_setting = v;
309309
},
310-
Err(e) => { println!("{}", e); }
310+
Err(e) => { println!("{e}"); }
311311
}
312312
}
313313
} else {

0 commit comments

Comments
 (0)