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 740b447 commit 2640554Copy full SHA for 2640554
collector/src/lib.rs
@@ -148,7 +148,7 @@ pub fn command_output(cmd: &mut Command) -> anyhow::Result<process::Output> {
148
child.stderr.take().unwrap(),
149
&mut |is_stdout, buffer, _is_done| {
150
// Send output if trace logging is enabled
151
- if log::log_enabled!(target: "collector_raw_cargo", log::Level::Trace) {
+ if log::log_enabled!(target: "raw_cargo_messages", log::Level::Trace) {
152
use std::io::Write;
153
if is_stdout {
154
stdout_writer.write_all(&buffer[stdout.len()..]).unwrap();
0 commit comments