Unverified Commit a4600ba1 authored by Alec's avatar Alec Committed by GitHub
Browse files

fix: dynamo-run change python subprocess from debug to info (#1484)

parent af1f1155
...@@ -92,13 +92,13 @@ pub async fn start( ...@@ -92,13 +92,13 @@ pub async fn start(
tokio::spawn(async move { tokio::spawn(async move {
let mut lines = stdout.lines(); let mut lines = stdout.lines();
while let Ok(Some(line)) = lines.next_line().await { while let Ok(Some(line)) = lines.next_line().await {
tracing::debug!("{}", strip_log_prefix(&line)); tracing::info!("{}", strip_log_prefix(&line));
} }
}); });
tokio::spawn(async move { tokio::spawn(async move {
let mut lines = stderr.lines(); let mut lines = stderr.lines();
while let Ok(Some(line)) = lines.next_line().await { while let Ok(Some(line)) = lines.next_line().await {
tracing::debug!("{}", strip_log_prefix(&line)); tracing::error!("{}", strip_log_prefix(&line));
} }
}); });
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment