🎨 Palette: Apply pluralize helper to log messages#782
Open
abhimehro wants to merge 1 commit into
Open
Conversation
|
Merging to
After your PR is submitted to the merge queue, this comment will be automatically updated with its status. If the PR fails, failure details will also be posted here |
There was a problem hiding this comment.
Gates Passed
6 Quality Gates Passed
See analysis details in CodeScene
Quality Gate Profile: Pay Down Tech Debt
Install CodeScene MCP: safeguard and uplift AI-generated code. Catch issues early with our IDE extension and CLI tool.
There was a problem hiding this comment.
Pull request overview
Applies the existing pluralize helper to CLI log messages so counts read grammatically correctly (e.g., “1 URL” vs “2 URLs”), improving readability of sync and cache warm-up output.
Changes:
- Update warm-up cache log to pluralize “URL” based on the number of URLs being processed.
- Update sync completion log to pluralize “folder” (but currently based on the total count, not the success count).
|
|
||
| log.info( | ||
| f"Sync complete: {success_count}/{len(folder_data_list)} folders processed successfully" | ||
| f"Sync complete: {success_count}/{len(folder_data_list)} {pluralize(len(folder_data_list), 'folder')} processed successfully" |
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.
💡 What
Applied the existing
pluralizehelper function to dynamically output grammatically correct log messages (e.g., '1 URL' vs '2 URLs', '1 folder' vs '2 folders').🎯 Why
Correctly pluralizing output nouns based on count enhances readability and improves the CLI micro-UX by avoiding awkward phrases like '1 URLs'.
📸 Before/After
Before:
Warming up cache for 1 URLs...All profiles processed: 1/1 successfulAfter:
Warming up cache for 1 URL...All profiles processed: 1/1 successful(and1 folderinstead of1 foldersin sync logs).♿ Accessibility
Cleaner, grammatically correct console logs are slightly easier for screen readers to process naturally.