Skip to content

Commit

Permalink
Issue #6026 - tweaking output
Browse files Browse the repository at this point in the history
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
  • Loading branch information
joakime committed Mar 9, 2021
1 parent 82a5072 commit da83f05
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -741,9 +741,8 @@ public boolean checkPathsWithUncoveredHttpMethods()
Set<String> 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;
Expand Down

0 comments on commit da83f05

Please sign in to comment.