We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92085b6 commit 4e08ccfCopy full SHA for 4e08ccf
cosmic-settings/src/pages/display/mod.rs
@@ -490,7 +490,7 @@ impl Page {
490
match message {
491
Message::RandrResult(result) => {
492
if let Some(Err(why)) = Arc::into_inner(result) {
493
- tracing::error!(?why, "cosmic-randr error");
+ tracing::error!(why = why.to_string(), "cosmic-randr error");
494
}
495
496
@@ -608,7 +608,7 @@ impl Page {
608
609
610
Some(Err(why)) => {
611
- tracing::error!(?why, "error fetching displays");
+ tracing::error!(why = why.to_string(), "error fetching displays");
612
613
614
None => (),
0 commit comments