[logback-dev] [JIRA] Created: (LBCLASSIC-257) Please add c'tor LoggerContextVO(String name, Map<String, String> propertyMap, long birthTime) to ch.qos.logback.classic.spi.LoggerContextVO
Joern Huxhorn (JIRA)
noreply-jira at qos.ch
Tue Mar 22 22:53:51 CET 2011
Please add c'tor LoggerContextVO(String name, Map<String,String> propertyMap, long birthTime) to ch.qos.logback.classic.spi.LoggerContextVO
-------------------------------------------------------------------------------------------------------------------------------------------
Key: LBCLASSIC-257
URL: http://jira.qos.ch/browse/LBCLASSIC-257
Project: logback-classic
Issue Type: Improvement
Affects Versions: 0.9.29
Reporter: Joern Huxhorn
Assignee: Logback dev list
I'm stuck recreating a Logback classic logging event since I'm unable to create a LoggerContextVO from plain data.
Please add the following c'tor to LoggerContextVO:
public LoggerContextVO(String name, Map<String,String> propertyMap, long birthTime) {
this.name = name;
this.propertyMap = propertyMap;
this.birthTime = birthTime;
}
This is the only thing that prevents me from fully supporting cat/tail of Lilith Logging events using Logback formatters.
See https://github.com/huxi/lilith/blob/master/lilith/src/main/java/de/huxhorn/lilith/tools/formatters/LoggingFormatter.java
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.qos.ch/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the logback-dev
mailing list