Skip to content

Commit c3fd28c

Browse files
authored
Merge pull request #3240 from mawen12/bugfix-repeat-log-param
remove repeat param from log message
2 parents 42b7faf + 762ea0f commit c3fd28c

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/org/apache/ibatis/io

1 file changed

+1
-1
lines changed

src/main/java/org/apache/ibatis/io/VFS.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ protected static Method getMethod(Class<?> clazz, String methodName, Class<?>...
145145
log.error("Security exception looking for method " + clazz.getName() + "." + methodName + ". Cause: " + e);
146146
return null;
147147
} catch (NoSuchMethodException e) {
148-
log.error("Method not found " + clazz.getName() + "." + methodName + "." + methodName + ". Cause: " + e);
148+
log.error("Method not found " + clazz.getName() + "." + methodName + ". Cause: " + e);
149149
return null;
150150
}
151151
}

0 commit comments

Comments
 (0)