Uh oh!
There was an error while loading. Please reload this page.
fix: use correct log levels for informational and progress messages - #566
Closed
la14-1 wants to merge 1 commit into
Closed
fix: use correct log levels for informational and progress messages#566la14-1 wants to merge 1 commit into
la14-1 wants to merge 1 commit into
Conversation
- local/*.sh: log_warn -> log_step for "Appending environment variables..." (progress message, not a warning) - github-codespaces/*.sh: log_warn -> log_info for "To delete codespace..." (helpful tip, not a warning) - */nanoclaw.sh: log_warn -> log_info for "You will need to scan a QR code..." (expected behavior, not a warning) 48 files, consistent with log_step/log_info/log_warn conventions from PR #440. Agent: ux-engineer Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
la14-1
commented
Feb 12, 2026
CollaboratorAuthor
Auto-closing: stale PR from previous refactor cycle. Please reopen if still needed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
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
log_warntolog_stepfor "Appending environment variables to ~/.zshrc..." -- this is a progress message, not a warninglog_warntolog_infofor "To delete codespace later..." -- this is a helpful tip, not a warninglog_warntolog_infofor "You will need to scan a WhatsApp QR code..." -- this is expected behavior info, not a warningThese were missed during PR #440 and PR #534 which established the log level conventions:
log_step(cyan) for progress/status messageslog_info(green) for informational messageslog_warn(yellow) reserved for actual warnings48 files changed, all pass
bash -nsyntax checks.Test plan
bash -nsyntax checklog_warnmisuses in agent scripts🤖 Generated with Claude Code