Most voted "logback" questions
Java log API, considered "the successor to Log4j", with many additional features and improvements compared to its predecessors.
Learn more…3 questions
Sort by count of
-
2
votes1
answer87
viewsHow to create bookmark in logback?
I am trying to create a bookmark inside my logback appender and could not. My code is <appender name="ErrorFile" class="ch.qos.logback.core.rolling.RollingFileAppender"> <!-- Support…
-
2
votes1
answer53
viewsWhy does logback use both logback-test.xml and logback.xml as configuration file name?
Reading the logback manual on configuration section, he says he looks for the following configuration files, in order: logback-test.xml logback.groovy logback.xml Why there is a suffix -test? For…
-
1
votes1
answer57
viewsValue passed in Pattern tag keys for class name
I am studying about Logback to implement in my company’s system, and at tag pattern I have the following: [%d{yyyy-MM-dd HH:mm:ss.SSS}] %level [%thread] %class{0} %method %line - %message%n I…