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 24f25db commit a931b7eCopy full SHA for a931b7e
console/src/config.rs
@@ -130,7 +130,8 @@ impl Config {
130
#[cfg(all(feature = "tracing-journald", target_os = "linux"))]
131
let (journald, should_fmt) = {
132
let journald = tracing_journald::layer().ok();
133
- (journald, journald.is_some())
+ let should_fmt = journald.is_none();
134
+ (journald, should_fmt)
135
};
136
137
#[cfg(not(all(feature = "tracing-journald", target_os = "linux")))]
0 commit comments