From 230500ea511cf9c6e6ca0f0d6b1c39f6062e116d Mon Sep 17 00:00:00 2001 From: Robert Burrell Donkin Date: Wed, 25 Jan 2006 19:16:03 +0000 Subject: [PATCH] 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 --- src/java/org/apache/commons/logging/impl/LogFactoryImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java b/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java index 1569381..27579e9 100644 --- a/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java +++ b/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java @@ -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;