Skip to content

Commit

Permalink
chore: relax log level for log producer error
Browse files Browse the repository at this point in the history
The error might be expected, e.g. container has been stopped.
  • Loading branch information
DDtKey committed Jul 6, 2024
1 parent 59831b0 commit 32b29e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testcontainers/src/core/containers/async_container.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ where
}
}
Err(err) => {
log::error!("Failed to read log frame for container {container_id}: {err}",);
log::warn!("Failed to read log frame for container {container_id}: {err}",);
}
}
}
Expand Down

0 comments on commit 32b29e7

Please sign in to comment.