fix: wrap python basic logs in debug assertion in launcher (#2539)
* fix: wrap python basic logs in debug assertion in launcher * use level filters instead
This commit is contained in:
parent
f478aa77ad
commit
7e2d18877e
|
@ -1038,11 +1038,13 @@ fn log_lines<R: Sized + Read>(mut bufread: BufReader<R>) {
|
||||||
Ok(log) => log.trace(),
|
Ok(log) => log.trace(),
|
||||||
// For interactive debugging ?
|
// For interactive debugging ?
|
||||||
Err(_) => {
|
Err(_) => {
|
||||||
stdout.write_all(line).unwrap();
|
if LevelFilter::current() >= tracing::Level::DEBUG {
|
||||||
if lines.peek().is_some() {
|
stdout.write_all(line).unwrap();
|
||||||
stdout.write_all(b"\n").unwrap();
|
if lines.peek().is_some() {
|
||||||
|
stdout.write_all(b"\n").unwrap();
|
||||||
|
}
|
||||||
|
stdout.flush().unwrap();
|
||||||
}
|
}
|
||||||
stdout.flush().unwrap();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue