Copilot commented on code in PR #8343:
URL: https://github.com/apache/hop/pull/8343#discussion_r3996824493
##########
ui/src/main/java/org/apache/hop/ui/hopgui/notifications/providers/NotificationHttp.java:
##########
@@ -80,6 +102,7 @@ static CloseableHttpClient newClient() {
* @return A client configured for polling a notification source
*/
static CloseableHttpClient newClient(URI target, String username, String
password) {
+ suppressWireLogging();
Review Comment:
`newClient` is called for every notification poll, so this re-applies `INFO`
to the process-wide `org.apache.hc.client5.http.wire` logger on every request.
An operator who sets that category to `DEBUG` for diagnostics will have the
override silently lost on the next poll (and unrelated HttpClient 5 callers
share the same category); apply the default suppression once or preserve an
explicit logger override.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]