43592c3e49
- don't use suffix tree in search - decrease default working threads count (only 1 for background jobs) - use string refs for store only one code string without duplicates - use cache for creating UI nodes - allow to disable autostart for background jobs (decompilation and index)
17 lines
419 B
XML
17 lines
419 B
XML
<configuration>
|
|
|
|
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
|
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
|
|
<level>INFO</level>
|
|
</filter>
|
|
<encoder>
|
|
<pattern>%d{HH:mm:ss} %-5level - %msg%n</pattern>
|
|
</encoder>
|
|
</appender>
|
|
|
|
<root level="DEBUG">
|
|
<appender-ref ref="STDOUT"/>
|
|
</root>
|
|
|
|
</configuration>
|