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.

allow non-msg but raw logs to be passed through

+4 -1
+4 -1
wire/lib/src/commands/mod.rs
··· 155 155 .map(SubcommandLog::Internal) 156 156 .unwrap_or(SubcommandLog::Raw(line.into())); 157 157 158 - if !matches!(log, SubcommandLog::Internal(LogMessage::Msg { .. })) { 158 + if !matches!( 159 + log, 160 + SubcommandLog::Internal(LogMessage::Msg { .. }) | SubcommandLog::Raw(..) 161 + ) { 159 162 return None; 160 163 } 161 164