Java 类org.apache.log4j.spi.RootLogger 实例源码
项目:cacheonix-core
文件:LoggerTestCase.java
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);
}
项目:daq-eclipse
文件:SocketServer.java
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();
}
}
}
项目:pentaho-metadata
文件:DataFormatterTest.java
@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 );
}
项目:t4f-data
文件:AppRespositorySelector.java
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);
}
项目:FSTestTools
文件:LoggingRulesTest.java
@BeforeClass
public static void setUp() throws Exception {
RootLogger.getRootLogger().addAppender(appenderForTest);
}
项目:FSTestTools
文件:LoggingRulesTest.java
@AfterClass
public static void tearDown() throws Exception {
assertThat("Expect ending message", appenderForTest.getMessage(), is("Successful termination of 'testLogging'!"));
RootLogger.getRootLogger().removeAppender(appenderForTest);
}
项目:scheduling
文件:LoggingEventProcessor.java
public NoWarningHierarchy() {
super(new RootLogger(Level.ALL));
}
项目:rrdclient
文件:FetchCommandTest.java
@BeforeClass
public static void setUpBeforeClass() throws Exception {
BasicConfigurator.configure();
RootLogger.getRootLogger().setLevel(DEBUG);
}
项目:rrdclient
文件:GraphCommandTest.java
@BeforeClass
public static void setUpBeforeClass() throws Exception {
BasicConfigurator.configure();
RootLogger.getRootLogger().setLevel(DEBUG);
}
项目:commune
文件:CommuneLogger.java
public CommuneLogger(Class<?> clazz) {
logger = RootLogger.getLogger(clazz);
}
项目:commune
文件:CommuneLogger.java
public CommuneLogger(Class<?> clazz, String containerId) {
logger = RootLogger.getLogger(clazz);
this.containerId = containerId;
}
项目:commune
文件:CommuneLogger.java
CommuneLogger(String category) {
logger = RootLogger.getLogger(category);
}
项目:commune
文件:CommuneLogger.java
public CommuneLogger(String category, String containerId) {
logger = RootLogger.getLogger(category);
this.containerId = containerId;
}