Reduce number of logs in watch mode - #35
Open
konard wants to merge 3 commits into
Open
Conversation
Adding CLAUDE.md with task information for AI processing. This file will be removed when the task is complete. Issue: #34
- Hide directory tree display in watch mode unless --verbose is used - Move DEBUG and TRACE log messages behind isVerbose flag - Quiet keychain monitoring messages on macOS unless verbose - Keep essential INFO messages for file changes and save confirmations - All debugging information still available with --verbose flag - Bump version to 1.2.3 Resolves issue #34: Users now get cleaner watch mode output by default while maintaining full debugging capability when needed. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
konard
marked this pull request as ready for review
September 10, 2025 17:39
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 free
to 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
• Reduce excessive logging in watch mode for cleaner user experience
• Move verbose debugging messages behind
--verboseflag• Keep essential INFO messages for file changes and save confirmations
• Maintain full debugging capability when
--verboseis usedChanges Made
• Hide directory tree display in watch mode unless
--verboseis used• Move DEBUG and TRACE log messages behind
isVerboseflag• Quiet keychain monitoring messages on macOS unless verbose
• Added example documentation showing the difference
• Bump version to 1.2.3
Test plan
node --check claude-profiles.mjs✅npm test✅./claude-profiles.mjs --help✅Before vs After
Before: Watch mode showed directory trees, debug messages, trace logs, and keychain monitoring details by default
After:
--verbose): Full debugging information available🤖 Generated with Claude Code
Resolves #34