Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ private boolean matches(String lhs, String rhs, RelationalOperator relationalOpe
try {
return Pattern.compile(rhs).matcher(lhs).find();
} catch (Exception e) {
log.error("Invalid regex: {} passed to match: {}", rhs, e);
log.error("Invalid regex: {} passed to match", rhs);
if (log.isDebugEnabled()) {
log.debug(
"Invalid regex passed to match. Hence returning false. lhs: {} and rhs: {}",
Expand Down