361319 Log initialization does not catch correct exceptions on all jvms
This commit is contained in:
parent
e9c398e86b
commit
d71fd55665
|
@ -80,12 +80,11 @@ public class Log
|
||||||
__log.debug("Logging to {} via {}", __log, log_class.getName());
|
__log.debug("Logging to {} via {}", __log, log_class.getName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(NoClassDefFoundError e)
|
catch(Throwable e)
|
||||||
{
|
|
||||||
initStandardLogging(e);
|
|
||||||
}
|
|
||||||
catch(Exception e)
|
|
||||||
{
|
{
|
||||||
|
if (e instanceof ThreadDeath)
|
||||||
|
throw (ThreadDeath)e;
|
||||||
|
|
||||||
initStandardLogging(e);
|
initStandardLogging(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue