From da83f05c402d7a3c531e16c612c314cf6a4e793d Mon Sep 17 00:00:00 2001 From: Joakim Erdfelt Date: Tue, 9 Mar 2021 10:22:48 -0600 Subject: [PATCH] Issue #6026 - tweaking output Signed-off-by: Joakim Erdfelt --- .../eclipse/jetty/security/ConstraintSecurityHandler.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintSecurityHandler.java b/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintSecurityHandler.java index d82907f2839a..768eef068236 100644 --- a/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintSecurityHandler.java +++ b/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintSecurityHandler.java @@ -741,9 +741,8 @@ public boolean checkPathsWithUncoveredHttpMethods() Set paths = getPathsWithUncoveredHttpMethods(); if (paths != null && !paths.isEmpty()) { - LOG.warn("{} has paths with uncovered http methods: [{}]", - ContextHandler.getCurrentContext(), - String.join(", ", paths)); + LOG.warn("{} has uncovered http methods for the following paths: {}", + ContextHandler.getCurrentContext(), paths); return true; } return false;