![JAR search and dependency download from the Maven repository](/logo.png)
ichtexteditor.richtexteditor-javafx.2.0.20.source-code.logback.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of richtexteditor-javafx Show documentation
Show all versions of richtexteditor-javafx Show documentation
WYSIWYG editor for JavafX supporting all common formatting options.
The newest version!
<configuration> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> <filter class="ch.qos.logback.classic.filter.ThresholdFilter"> <level>DEBUG</level> </filter> </appender> <!-- Insert the current time formatted as "yyyyMMdd'T'HHmmss" under the key "bySecond" into the logger context. This value will be available to all subsequent configuration elements. --> <timestamp key="bySecond" datePattern="yyyyMMdd'T'HHmmss"/> <appender name="FILE" class="ch.qos.logback.core.FileAppender"> <file>data/logs/RichTextEditor-${bySecond}.log</file> <!-- encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder by default --> <encoder> <pattern>%-4relative [%thread] %-5level %logger{35} - %msg%n</pattern> </encoder> <filter class="ch.qos.logback.classic.filter.ThresholdFilter"> <level>DEBUG</level> </filter> </appender> <!-- to ignore all other packages like Hibernate --> <!--<logger name="net.dankito" level="DEBUG">--> <!--<appender-ref ref="STDOUT" />--> <!--<appender-ref ref="FILE" />--> <!--</logger>--> <root level="ALL"> <!--<root level="ALL">--> <appender-ref ref="STDOUT"/> <appender-ref ref="FILE"/> </root> </configuration>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy