Skip to content
Open
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 @@ -98,8 +98,8 @@ protected int compare(OperationResourceInfo e1, OperationResourceInfo e2, boolea
e1.getClassResourceInfo().getServiceClass().getName() + "#" + e1.getMethodToInvoke().getName();
String m2Name =
e2.getClassResourceInfo().getServiceClass().getName() + "#" + e2.getMethodToInvoke().getName();
LOG.warning("Both " + m1Name + " and " + m2Name + " are equal candidates for handling the current request"
+ " which can lead to unpredictable results");
LOG.fine(() -> "Both " + m1Name + " and " + m2Name
+ " are equal candidates for handling the current request");
}
return result;
}
Expand Down