Skip to content

Commit

Permalink
Remove leftover error messages from CSRF Reactive filter
Browse files Browse the repository at this point in the history
  • Loading branch information
sberyozkin committed Sep 20, 2022
1 parent 43da21b commit 32c4951
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,6 @@ private String getCookieToken(RoutingContext routing, CsrfReactiveConfig config)
}

private boolean isCsrfTokenRequired(RoutingContext routing, CsrfReactiveConfig config) {
LOG.error("**************Request path: " + routing.request().path());
LOG.error("**************Token path: " + config.createTokenPath.get());
return config.createTokenPath.isPresent() ? config.createTokenPath.get().equals(routing.request().path()) : true;
}

Expand Down

0 comments on commit 32c4951

Please sign in to comment.