1
0
mirror of https://github.com/casey/just synced 2024-07-01 07:24:45 +00:00

Ignore env_logger initialization errors (#2170)

This commit is contained in:
Ryan McGuire 2024-06-19 01:50:37 -06:00 committed by GitHub
parent 71b72c4a53
commit fcac7ee768
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,7 +11,8 @@ pub fn run() -> Result<(), i32> {
.filter("JUST_LOG")
.write_style("JUST_LOG_STYLE"),
)
.init();
.try_init()
.ok();
let app = Config::app();