1
0

Changed private method name to better reflect current purpose.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@377186 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Burrell Donkin
2006-02-12 14:53:40 +00:00
parent d1dcf8a3e2
commit d2fcbd4b36

View File

@@ -1349,7 +1349,7 @@ public abstract class LogFactory {
* @param clazz is the class whose classloader + tree are to be
* output.
*/
private static void logClassLoaderTree(Class clazz) {
private static void logClassLoaderEnvironment(Class clazz) {
if (!isDiagnosticsEnabled()) {
return;
}
@@ -1454,7 +1454,7 @@ public abstract class LogFactory {
// note: it's safe to call methods before initDiagnostics.
thisClassLoader = getClassLoader(LogFactory.class);
initDiagnostics();
logClassLoaderTree(LogFactory.class);
logClassLoaderEnvironment(LogFactory.class);
factories = createFactoryStore();
logDiagnostic("BOOTSTRAP COMPLETED");
}