ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

increase Raw logs to WARN by default.

+2 -2
+2 -2
wire/lib/src/nix_log.rs
··· 6 6 borrow::Cow, 7 7 fmt::{Debug, Display}, 8 8 }; 9 - use tracing::{Level as tracing_level, event, info}; 9 + use tracing::{Level as tracing_level, event, warn}; 10 10 11 11 // static DIGEST_RE: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"[0-9a-z]{32}").unwrap()); 12 12 ··· 99 99 // &DIGEST_RE.replace_all(&line.to_string(), "…"), 100 100 // ); 101 101 } 102 - SubcommandLog::Raw(line) => info!("{line}"), 102 + SubcommandLog::Raw(line) => warn!("{line}"), 103 103 } 104 104 } 105 105 }