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 84454ab commit ac4fd87Copy full SHA for ac4fd87
launch/dynamo-run/src/subprocess.rs
@@ -98,7 +98,11 @@ pub async fn start(
98
tokio::spawn(async move {
99
let mut lines = stderr.lines();
100
while let Ok(Some(line)) = lines.next_line().await {
101
- tracing::error!("{}", strip_log_prefix(&line));
+ // FIXME: always logging INFO/DEBUG will hide real errors, but
102
+ // some libraries log non-errors to stderr, which confuses users
103
+ // when we log those as ERROR. Using WARN as a middle ground for
104
+ // now, but we can probably be smarter here.
105
+ tracing::warn!("{}", strip_log_prefix(&line));
106
}
107
});
108
0 commit comments