Change logging

This commit is contained in:
carbotaniuman 2020-06-19 15:09:45 -05:00
parent 8e98cb893f
commit 42474256f0
2 changed files with 6 additions and 1 deletions

View File

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- [2020-06-19] Changed default CPU thread count to `4` by [@lflare].
- [2020-06-19] Removed ability to set log files but increased throughput [@carbotaniuman]
### Deprecated

View File

@ -1,7 +1,11 @@
<configuration>
<shutdownHook class="ch.qos.logback.core.hook.DelayingShutdownHook"/>
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>${file-level:-TRACE}</level>
<!-- <level>${file-level:-TRACE}</level>-->
<level>TRACE</level>
<immediateFlush>false</immediateFlush>
</filter>
<file>log/latest.log</file>