1
0

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
This commit is contained in:
Simon Kitching
2006-02-28 23:31:20 +00:00
parent d1779b026e
commit dc5a557622

View File

@@ -476,7 +476,7 @@ public class LogFactoryImpl extends LogFactory {
} catch(SecurityException e) { } catch(SecurityException e) {
classLoaderName = "UNKNOWN"; classLoaderName = "UNKNOWN";
} }
diagnosticPrefix = "[LogFactoryImpl@" + System.identityHashCode(this) + " -> " + classLoaderName + "] "; diagnosticPrefix = "[LogFactoryImpl@" + System.identityHashCode(this) + " from " + classLoaderName + "] ";
} }