Skip to content

Commit

Permalink
Merge pull request #3240 from mawen12/bugfix-repeat-log-param
Browse files Browse the repository at this point in the history
remove repeat param from log message
  • Loading branch information
hazendaz authored Sep 20, 2024
2 parents 42b7faf + 762ea0f commit c3fd28c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/apache/ibatis/io/VFS.java
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ protected static Method getMethod(Class<?> clazz, String methodName, Class<?>...
log.error("Security exception looking for method " + clazz.getName() + "." + methodName + ". Cause: " + e);
return null;
} catch (NoSuchMethodException e) {
log.error("Method not found " + clazz.getName() + "." + methodName + "." + methodName + ". Cause: " + e);
log.error("Method not found " + clazz.getName() + "." + methodName + ". Cause: " + e);
return null;
}
}
Expand Down

0 comments on commit c3fd28c

Please sign in to comment.