Skip to content

Commit e614b72

Browse files
committed
fix: properly handle log levels with buildkite
1 parent eede910 commit e614b72

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/ci_provider/buildkite/logger.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ impl Log for BuildkiteLogger {
4848
return;
4949
}
5050

51+
if level > self.log_level {
52+
return;
53+
}
5154
// there is no support for log levels in Buildkite, so we print the level in the message
5255
match level {
5356
Level::Error => {

0 commit comments

Comments
 (0)