433483 sync log initialize

This commit is contained in:
Greg Wilkins 2014-04-25 14:22:57 +02:00
parent ce5af1d521
commit 15661722b3
1 changed files with 17 additions and 18 deletions

View File

@ -151,33 +151,32 @@ public class Log
public static void initialized()
{
synchronized (Log.class)
{
if (__initialized)
return;
__initialized = true;
}
final long uptime=ManagementFactory.getRuntimeMXBean().getUptime();
final long uptime=ManagementFactory.getRuntimeMXBean().getUptime();
try
{
Class<?> log_class = Loader.loadClass(Log.class, __logClass);
if (LOG == null || !LOG.getClass().equals(log_class))
try
{
LOG = (Logger)log_class.newInstance();
LOG.debug("Logging to {} via {}", LOG, log_class.getName());
Class<?> log_class = Loader.loadClass(Log.class, __logClass);
if (LOG == null || !LOG.getClass().equals(log_class))
{
LOG = (Logger)log_class.newInstance();
LOG.debug("Logging to {} via {}", LOG, log_class.getName());
}
}
catch(Throwable e)
{
// Unable to load specified Logger implementation, default to standard logging.
initStandardLogging(e);
}
}
catch(Throwable e)
{
// Unable to load specified Logger implementation, default to standard logging.
initStandardLogging(e);
}
if (LOG!=null)
LOG.info(String.format("Logging initialized @%dms",uptime));
if (LOG!=null)
LOG.info(String.format("Logging initialized @%dms",uptime));
}
}
private static void initStandardLogging(Throwable e)