1
0

Improved exception message. This should allow users who add whitespace to easily see that they've made a mistake.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@372295 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Burrell Donkin
2006-01-25 19:16:03 +00:00
parent 8bb90f49e5
commit 230500ea51

View File

@@ -715,8 +715,8 @@ public class LogFactoryImpl extends LogFactory {
true);
if (result == null) {
throw new LogConfigurationException(
"User-specified log class " + specifiedLogClassName
+ " cannot be found or is not useable.");
"User-specified log class '" + specifiedLogClassName
+ "' cannot be found or is not useable.");
}
return result;