本文整理汇总了Java中org.apache.log4j.spi.RootLogger类的典型用法代码示例。如果您正苦于以下问题:Java RootLogger类的具体用法?Java RootLogger怎么用?Java RootLogger使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
RootLogger类属于org.apache.log4j.spi包,在下文中一共展示了RootLogger类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testHierarchy1
import org.apache.log4j.spi.RootLogger; //导入依赖的package包/类
public
void testHierarchy1() {
Hierarchy h = new Hierarchy(new RootLogger((Level) Level.ERROR));
Logger a0 = h.getLogger("a");
assertEquals("a", a0.getName());
assertNull(a0.getLevel());
assertSame(Level.ERROR, a0.getEffectiveLevel());
Logger a1 = h.getLogger("a");
assertSame(a0, a1);
}
示例2: configureHierarchy
import org.apache.log4j.spi.RootLogger; //导入依赖的package包/类
LoggerRepository configureHierarchy(InetAddress inetAddress) {
cat.info("Locating configuration file for "+inetAddress);
// We assume that the toSting method of InetAddress returns is in
// the format hostname/d1.d2.d3.d4 e.g. torino/192.168.1.1
String s = inetAddress.toString();
int i = s.indexOf("/");
if(i == -1) {
cat.warn("Could not parse the inetAddress ["+inetAddress+
"]. Using default hierarchy.");
return genericHierarchy();
} else {
String key = s.substring(0, i);
File configFile = new File(dir, key+CONFIG_FILE_EXT);
if(configFile.exists()) {
Hierarchy h = new Hierarchy(new RootLogger(Level.DEBUG));
hierarchyMap.put(inetAddress, h);
new PropertyConfigurator().doConfigure(configFile.getAbsolutePath(), h);
return h;
} else {
cat.warn("Could not find config file ["+configFile+"].");
return genericHierarchy();
}
}
}
示例3: setUp
import org.apache.log4j.spi.RootLogger; //导入依赖的package包/类
@Before
public void setUp() {
RootLogger.getRootLogger().setLevel( Level.OFF );
SimpleDateFormat format = new SimpleDateFormat( SAMPLE_DATE_MASK );
//add custom seconds
int seconds = 123456;
sampleJavaDate = new Date( seconds );
sampleSqlDate = new java.sql.Date( seconds );
sampleSqlTimeStamp = new Timestamp( seconds );
sampleStringDate = format.format( sampleJavaDate );
expectedDate = format.format( sampleJavaDate );
}
示例4: init
import org.apache.log4j.spi.RootLogger; //导入依赖的package包/类
public static synchronized void init(ServletContext servletContext)
throws ServletException {
if (!initialized) // set the global RepositorySelector
{
defaultRepository = LoggerFactory.getLoggerRepository();
RepositorySelector theSelector = new AppRespositorySelector();
LogManager.setRepositorySelector(theSelector, guard);
initialized = true;
}
Hierarchy hierarchy = new Hierarchy(new RootLogger(Level.DEBUG));
loadLog4JConfig(servletContext, hierarchy);
ClassLoader loader = Thread.currentThread().getContextClassLoader();
repositories.put(loader, hierarchy);
}
示例5: setUp
import org.apache.log4j.spi.RootLogger; //导入依赖的package包/类
@BeforeClass
public static void setUp() throws Exception {
RootLogger.getRootLogger().addAppender(appenderForTest);
}
示例6: tearDown
import org.apache.log4j.spi.RootLogger; //导入依赖的package包/类
@AfterClass
public static void tearDown() throws Exception {
assertThat("Expect ending message", appenderForTest.getMessage(), is("Successful termination of 'testLogging'!"));
RootLogger.getRootLogger().removeAppender(appenderForTest);
}
示例7: NoWarningHierarchy
import org.apache.log4j.spi.RootLogger; //导入依赖的package包/类
public NoWarningHierarchy() {
super(new RootLogger(Level.ALL));
}
示例8: setUpBeforeClass
import org.apache.log4j.spi.RootLogger; //导入依赖的package包/类
@BeforeClass
public static void setUpBeforeClass() throws Exception {
BasicConfigurator.configure();
RootLogger.getRootLogger().setLevel(DEBUG);
}
示例9: CommuneLogger
import org.apache.log4j.spi.RootLogger; //导入依赖的package包/类
public CommuneLogger(Class<?> clazz) {
logger = RootLogger.getLogger(clazz);
}