![JAR search and dependency download from the Maven repository](/logo.png)
rawler4j.4.1.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 crawler4j Show documentation
Show all versions of crawler4j Show documentation
Open Source Web Crawler for Java
<configuration> <property name="LOG_HOME" value="logs" /> <property name="LOG_FILE_NAME" value="/crawler4j.log" /> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%date{HH:mm:ss} %-5level [%thread] - [%logger{0}]- %msg%n</pattern> </encoder> </appender> <appender name="FILE" class="ch.qos.logback.core.FileAppender"> <file>${LOG_HOME}/${LOG_FILE_NAME}</file> <encoder> <pattern>%date %-5level [%thread] - [%logger] - %msg%n</pattern> </encoder> </appender> <root level="DEBUG"> <appender-ref ref="STDOUT" /> <!--<appender-ref ref="FILE" />--> </root> </configuration>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy