We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3836670 commit d47754dCopy full SHA for d47754d
src/logger/mod.rs
@@ -30,11 +30,20 @@ pub fn init_logger() -> Result<()> {
30
let fmt_layer = fmt::layer().compact();
31
32
match journald::layer() {
33
- Ok(journald_layer) => tracing_subscriber::registry()
34
- .with(fmt_layer)
35
- .with(journald_layer)
36
- .with(filter)
37
- .init(),
+ Ok(journald_layer) => {
+ if std::env::var_os("COSMIC_SESSION_SOCK").is_some() {
+ tracing_subscriber::registry()
+ .with(journald_layer)
+ .with(filter)
38
+ .init()
39
+ } else {
40
41
+ .with(fmt_layer)
42
43
44
45
+ }
46
47
Err(err) => {
48
tracing_subscriber::registry()
49
.with(fmt_layer)
0 commit comments