当前位置: 首页>>代码示例>>Java>>正文


Java Logging类代码示例

本文整理汇总了Java中org.geotools.util.logging.Logging的典型用法代码示例。如果您正苦于以下问题:Java Logging类的具体用法?Java Logging怎么用?Java Logging使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


Logging类属于org.geotools.util.logging包,在下文中一共展示了Logging类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testLogging

import org.geotools.util.logging.Logging; //导入依赖的package包/类
@Test
public void testLogging() {
	ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext();
	context.setId("test");
	context.setDisplayName("test");
	context.setConfigLocation("/org/geomajas/spring/geomajasContext.xml ");
	context.refresh();
	Assert.assertSame(Logging.GEOTOOLS.getLoggerFactory(), Slf4jLoggerFactory.getInstance());
}
 
开发者ID:geomajas,项目名称:geomajas-project-server,代码行数:10,代码来源:GeotoolsInitializerTest.java

示例2: testSlf4j

import org.geotools.util.logging.Logging; //导入依赖的package包/类
@Test
public void testSlf4j() throws ClassNotFoundException {
	try {
		Logging.GEOTOOLS.setLoggerFactory("org.geomajas.internal.configuration.Slf4jLoggerFactory");
		Logger log = Logging.getLogger("org.geotools.SLF4JLoggerTestTrace");
		assertTrue(log instanceof Slf4jLogger);
		assertEquals(Level.FINEST, log.getLevel());
		log = Logging.getLogger("org.geotools.SLF4JLoggerTestDebug");
		assertTrue(log instanceof Slf4jLogger);
		assertEquals(Level.FINE, log.getLevel());
		log = Logging.getLogger("org.geotools.SLF4JLoggerTestInfo");
		assertTrue(log instanceof Slf4jLogger);
		assertEquals(Level.INFO, log.getLevel());
		log = Logging.getLogger("org.geotools.SLF4JLoggerTestWarn");
		assertTrue(log instanceof Slf4jLogger);
		assertEquals(Level.WARNING, log.getLevel());
		log = Logging.getLogger("org.geotools.SLF4JLoggerTestError");
		assertTrue(log instanceof Slf4jLogger);
		assertEquals(Level.SEVERE, log.getLevel());
		log = Logging.getLogger("org.geotools.SLF4JLoggerTestOff");
		assertTrue(log instanceof Slf4jLogger);
		assertEquals(Level.OFF, log.getLevel());
	} finally {
		Logging.GEOTOOLS.setLoggerFactory((String) null);
		assertEquals(Logger.class, Logging.getLogger("org.geotools").getClass());
	}
}
 
开发者ID:geomajas,项目名称:geomajas-project-server,代码行数:28,代码来源:Slf4jLoggerTest.java

示例3: postConstruct

import org.geotools.util.logging.Logging; //导入依赖的package包/类
@PostConstruct
public void postConstruct() {
	Logging.GEOTOOLS.setLoggerFactory(Slf4jLoggerFactory.getInstance());
}
 
开发者ID:geomajas,项目名称:geomajas-project-server,代码行数:5,代码来源:GeotoolsInitializer.java


注:本文中的org.geotools.util.logging.Logging类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。