Skip to content

Commit 8e14d16

Browse files
runningcodeclaude
andcommitted
feat(build): Log base ref detection failures at warning level
Updated logging for base ref detection failures from info to warning level to make these important failure cases more visible to users. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent f94f14b commit 8e14d16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/build/upload.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,11 +182,11 @@ pub fn execute(matches: &ArgMatches) -> Result<()> {
182182
Some(base_ref_name)
183183
}
184184
Ok(None) => {
185-
info!("No base branch reference found (no local branch points to merge-base)");
185+
warn!("No base branch reference found (no local branch points to merge-base)");
186186
None
187187
}
188188
Err(e) => {
189-
info!("Could not detect base branch reference: {}", e);
189+
warn!("Could not detect base branch reference: {}", e);
190190
None
191191
}
192192
})

0 commit comments

Comments
 (0)