Skip to content

Commit

Permalink
Fix typo in the error message
Browse files Browse the repository at this point in the history
  • Loading branch information
sarxos committed May 26, 2013
1 parent f51776a commit 8ffc644
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ public static void configure(InputStream is) {
String[] names = {
"ch.qos.logback.classic.LoggerContext",
"ch.qos.logback.classic.joran.JoranConfigurator",
"ch.qos.logback.core.Context"
};

for (String name : names) {
Expand All @@ -59,7 +58,7 @@ public static void configure(InputStream is) {
doConfigure.invoke(configurator, is);

} catch (ClassNotFoundException e) {
System.err.println("WLogC: Logback JAR is missing inc lasspath");
System.err.println("WLogC: Logback JARs are missing in classpath");
} catch (Exception e) {
LOG.error("Joran configuration exception", e);
}
Expand Down

0 comments on commit 8ffc644

Please sign in to comment.