Trivial implementation of Log that throws away all messages. No configurable system properties are supported.
241242243244245246247248249250
log = (Log) (logImplctor.newInstance(args)); } catch (Throwable t) { log = null; } if (null == log) { log = new NoOpLog(name); } return log; }