-
Notifications
You must be signed in to change notification settings - Fork 23
fix: demote hook infrastructure logs from INFO to DEBUG #604
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
d80c6ec
91bc2d5
abbe71b
fe0f930
2050453
969829d
561a063
f32f73d
4237897
b750d35
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -103,7 +103,7 @@ def _create_hook_env(self, lease_scope: "LeaseContext") -> dict[str, str]: | |
| # Falls back to main socket if hook socket not available (backward compatibility) | ||
| socket_path = lease_scope.hook_socket_path or lease_scope.socket_path | ||
| if lease_scope.hook_socket_path: | ||
| logger.info( | ||
| logger.debug( | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks good -- demoting this socket-selection detail from INFO to DEBUG makes sense since it is purely internal plumbing and should not appear in client-visible output. AI-generated, human reviewed
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this seems redundant, as this specific message was not printing at the client side anyway. according to claude analysis, which explains the observed behavior. the extensive verbosity mentioned in the original issue was already fixed elsewhere. it seems that the bot didn't checked in code if the issue is still exist, but instead assumed it must be there so tried what it can. |
||
| "Using dedicated hook socket: %s (main socket: %s)", | ||
| lease_scope.hook_socket_path, | ||
| lease_scope.socket_path, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
test comment