Skip to content

Commit

Permalink
fix debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
anuvedverma committed Jul 3, 2024
1 parent 6343539 commit a2303ac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public void start() {
StatisticsHandler stats = this.server.getChildHandlerByClass(StatisticsHandler.class);
this.scheduler.scheduleAtFixedRate(() -> {
log.debug("(jetty) Num requests: " + stats.getRequests());
log.debug("(jetty) Num requests: " + stats.getRequestsActive());
log.debug("(jetty) Num active requests: " + stats.getRequestsActive());
log.debug("(jetty) Responses with 4xx status: " + stats.getResponses4xx());
log.debug("(jetty) Responses with 5xx status: " + stats.getResponses5xx());
// Log other metrics as needed
Expand Down

0 comments on commit a2303ac

Please sign in to comment.