Replies: 3 comments 2 replies
-
That's actually a pretty good idea! I would love to see this happen :D Do you have time/interest to work on this after the upcoming release maybe? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Sounds good — I’m happy to take this on after the upcoming release! Before that, I’ll put together a quick guideline on what kind of logs we want and at what level, and share it here so we’re on the same page. |
Beta Was this translation helpful? Give feedback.
1 reply
-
TODO: Reminder to initiate this task following the release. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
As seen in issues like #1189 and #1181, it appears that some log messages that could aid in understanding git-cliff’s behavior or detecting misconfigurations early are currently logged at the
trace!
level.This effectively hides them unless users explicitly pass
-vv
, which might not be intuitive for many users and may hinder:💡 Proposal
Review current
trace!
log usage and consider promoting messages that reflect high-level behavior (e.g., tag skipping, changelog generation decisions, applied filters) toinfo!
.This would make
git-cliff -v
(or even no-v
) much more informative without overwhelming the user, while still preservingtrace!
for deeply internal logic.✅ Benefits
Beta Was this translation helpful? Give feedback.
All reactions