fix(completion): respect verbose flag when generating shell completions - #120
Merged
Thumuss merged 1 commit intoMay 10, 2026
Merged
Conversation
When generating completion files, the "Generating ..." message is always displayed, regardless of the verbosity setting. This is annoying when used in your shell startup files. The message is now logged using `utpm_log!`. As `generate` would mostly be used in a shell startup file, I have set the log level to `trace` so that it's not displayed by default.
mishyy
force-pushed
the
fix/respect-verbose-generate
branch
from
May 9, 2026 03:33
3187e2f to
c81732d
Compare
Contributor
Author
|
I forgot the 'not' in the last line of the commit message... oops! The force-push and edit was to fix that. |
Member
|
Thank you! |
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.
When generating completion files, the "Generating ..." message is always
displayed, regardless of the verbosity setting. This is annoying when
used in your shell startup files.
The message is now logged using
utpm_log!. Asgeneratewould mostlybe used in a shell startup file, I have set the log level to
tracesothat it's not displayed by default.