Skip to content

Commit

Permalink
The Arrays.toString(Object[]) was added in JDK 1.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
ceki committed Jun 10, 2009
1 parent f142a73 commit 4455c76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slf4j-api/src/main/java/org/slf4j/LoggerFactory.java
Expand Up @@ -168,7 +168,7 @@ private final static void versionSanityCheck() {
if (!match) {
Util.reportFailure("The requested version " + requested
+ " by your slf4j binding is not compatible with "
+ Arrays.toString(API_COMPATIBILITY_LIST));
+ Arrays.asList(API_COMPATIBILITY_LIST).toString());
Util.reportFailure("See " + VERSION_MISMATCH + " for further details.");
}
} catch (java.lang.NoSuchFieldError nsfe) {
Expand Down

0 comments on commit 4455c76

Please sign in to comment.