org.geotools.util.logging.Logging.getLoggerFactory()方法的使用及代码示例

x33g5p2x  于2022-01-23 转载在 其他  
字(0.8k)|赞(0)|评价(0)|浏览(169)

本文整理了Java中org.geotools.util.logging.Logging.getLoggerFactory()方法的一些代码示例,展示了Logging.getLoggerFactory()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Logging.getLoggerFactory()方法的具体详情如下:
包路径:org.geotools.util.logging.Logging
类名称:Logging
方法名:getLoggerFactory

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();

相关文章