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.

reduce command instruments to debug

+2 -2
+1 -1
wire/lib/src/commands/interactive.rs
··· 80 80 /// substitutes STDOUT with #$line. stdout is far less common than stderr. 81 81 const IO_SUBS: &str = "1> >(while IFS= read -r line; do echo \"#$line\"; done)"; 82 82 83 - #[instrument(level = "trace", skip_all, name = "run", fields(elevated = %arguments.elevated))] 83 + #[instrument(level = "debug", skip_all, name = "run", fields(elevated = %arguments.elevated))] 84 84 pub(crate) fn interactive_command_with_env<S: AsRef<str>>( 85 85 arguments: &CommandArguments<S>, 86 86 envs: std::collections::HashMap<String, String>,
+1 -1
wire/lib/src/commands/noninteractive.rs
··· 32 32 stdin: ChildStdin, 33 33 } 34 34 35 - #[instrument(level = "trace", skip_all, name = "run", fields(elevated = %arguments.elevated))] 35 + #[instrument(level = "debug", skip_all, name = "run", fields(elevated = %arguments.elevated))] 36 36 pub(crate) fn non_interactive_command_with_env<S: AsRef<str>>( 37 37 arguments: &CommandArguments<S>, 38 38 envs: HashMap<String, String>,