Change logging
This commit is contained in:
parent
8e98cb893f
commit
42474256f0
|
@ -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
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue