I've got an application I've developed in Dropwizard (0.9), and part of our internal infrastructure routinely pings the admin healthcheck REST endpoint to validate that the service is up. This adds a great deal of:
127.0.0.1 - - [26/Sep/2016:21:47:04 +0000] "GET /healthcheck HTTP/1.1" 200 - "-" "curl/7.43.0" 27
to the logfiles. Adjusting our internal tools is out of scope, so I'd like to configure the logger to silence these entries. Unfortunately, I can't identify the class generating these messages. Which class is responsible for the built-in /healthcheck endpoint, and will a simple:
logging:
loggers:
"com.class.that.is.responsible": ERROR
entry in the yaml config suppress them?