本文整理了Java中org.geotools.util.logging.Logging.getLoggerFactory()
方法的一些代码示例,展示了Logging.getLoggerFactory()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Logging.getLoggerFactory()
方法的具体详情如下:
包路径:org.geotools.util.logging.Logging
类名称:Logging
方法名:getLoggerFactory
[英]Returns the logger factory, or null if none. This method returns the logger set by the last call to #setLoggerFactory on this Logging instance or on one of its parent.
[中]返回记录器工厂,如果没有,则返回null。此方法返回上次在此日志实例或其父实例之一上调用#setLoggerFactory时设置的记录器。
代码示例来源:origin: geotools/geotools
if (log.getLoggerFactory() == null) {
log.forceMonolineConsoleOutput();
代码示例来源:origin: org.geotools/gt2-metadata
if (log.getLoggerFactory() == null) {
log.forceMonolineConsoleOutput();
代码示例来源:origin: org.geotools/gt-metadata
if (log.getLoggerFactory() == null) {
log.forceMonolineConsoleOutput();
内容来源于网络,如有侵权,请联系作者删除!