Skip to content

Commit 2bddbe0

Browse files
runningcodeclaude
andcommitted
fix: lower log level for missing base ref detection (EME-369)
Changes the logging level from warn to info when failing to detect base branch reference in build uploads. This reduces noise in build logs for common scenarios including detached HEAD states in PRs and main/master branch builds where base ref detection failures are expected. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5b1fb22 commit 2bddbe0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/commands/build/upload.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ pub fn execute(matches: &ArgMatches) -> Result<()> {
192192
Some(base_ref_name)
193193
}
194194
Err(e) => {
195-
warn!("Could not detect base branch reference: {}", e);
195+
info!("Could not detect base branch reference: {}", e);
196196
None
197197
}
198198
})

0 commit comments

Comments
 (0)