235236237238239240241242243244245
return null; } private static ServerLog tryLog4J() { try { return new ServerLogImplLog4J(); } catch (NoClassDefFoundError e) { // Likely no log4j present; ignore and move on } catch (Throwable e) { // Unexpected e.printStackTrace();
258259260261262263264265266267268
return null; } private static ServerLogImpl tryLog4J() { try { return new ServerLogImplLog4J(); } catch (NoClassDefFoundError e) { // Likely no log4j present; ignore and move on } catch (Throwable e) { // Unexpected e.printStackTrace();
300301302303304305306307308309310
293294295296297298299300301302303