From dc5a55762200a967e90be0fb884cb50784f5075d Mon Sep 17 00:00:00 2001 From: Simon Kitching Date: Tue, 28 Feb 2006 23:31:20 +0000 Subject: [PATCH] Minor diagnostics tweak: use word "from" instead of confusion "->". git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@381826 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/commons/logging/impl/LogFactoryImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java b/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java index 6f6acb7..f1b2b7b 100644 --- a/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java +++ b/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java @@ -476,7 +476,7 @@ public class LogFactoryImpl extends LogFactory { } catch(SecurityException e) { classLoaderName = "UNKNOWN"; } - diagnosticPrefix = "[LogFactoryImpl@" + System.identityHashCode(this) + " -> " + classLoaderName + "] "; + diagnosticPrefix = "[LogFactoryImpl@" + System.identityHashCode(this) + " from " + classLoaderName + "] "; }