Skip to content

Commit

Permalink
add debug infos for container exit code
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas-Heiligenbrunner committed Dec 8, 2024
1 parent 1c9d647 commit 6053872
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions backend/src/builder/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ impl Builder {
Ok(v) => {
let t = v.ok_or(anyhow!("Failed to get build result"))??;
let exit_code = t.status_code;
debug!("Build container exited with code: {}", exit_code);
if exit_code > 0 {
self.logger
.append(format!(
Expand Down

0 comments on commit 6053872

Please sign in to comment.