Skip to content

Commit

Permalink
Fix typo in log message.
Browse files Browse the repository at this point in the history
  • Loading branch information
matrei committed Apr 12, 2023
1 parent 3a1d6d1 commit 8ab5c9d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ public UrlMappingInfo[] matchAll(String uri, String httpMethod) {
UrlMappingInfo current = mapping.match(uri);
if (current != null) {
if (LOG.isDebugEnabled()) {
LOG.debug("Matched URI [" + uri + "] with pattern [" + mapping.getUrlData().getUrlPattern() + "], adding to posibilities");
LOG.debug("Matched URI [" + uri + "] with pattern [" + mapping.getUrlData().getUrlPattern() + "], adding to possibilities");
}

String mappingHttpMethod = current.getHttpMethod();
Expand Down Expand Up @@ -586,7 +586,7 @@ public UrlMappingInfo[] matchAll(String uri, String httpMethod, String version)
UrlMappingInfo current = mapping.match(uri);
if (current != null) {
if (LOG.isDebugEnabled()) {
LOG.debug("Matched URI [" + uri + "] with pattern [" + mapping.getUrlData().getUrlPattern() + "], adding to posibilities");
LOG.debug("Matched URI [" + uri + "] with pattern [" + mapping.getUrlData().getUrlPattern() + "], adding to possibilities");
}

String mappingHttpMethod = current.getHttpMethod();
Expand Down

0 comments on commit 8ab5c9d

Please sign in to comment.