fix: lower log level for missing base ref detection (EME-369) #2813
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Lowers the logging level from
warn
toinfo
when failing to detect base branch reference in build uploads.Why
The warning message confuses users as it appears even in cases where we don't expect there to be a base reference (detached HEAD states, main/master builds, etc.). Changing to info level keeps the message available for debugging while hiding it by default.
Changes
warn!
toinfo!
in base ref detection error handling--log-level=error
from build upload tests to ensure info messages work correctly🤖 Generated with Claude Code
Note
Lower base-ref detection logging to info and update build upload trycmd tests to remove log-level flag and assert experimental warning output.
warn!
toinfo!
when failing to detect base branch reference insrc/commands/build/upload.rs
.trycmd
cases (tests/integration/_cases/build/*
) to remove--log-level=error
and expect the experimental warning line in output.Written by Cursor Bugbot for commit a0961a1. This will update automatically on new commits. Configure here.