mirror of
https://gitlab.com/mangadex-pub/mangadex_at_home.git
synced 2024-01-19 02:48:37 +00:00
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
|
### Changed
|
||||||
- [2020-06-19] Changed default CPU thread count to `4` by [@lflare].
|
- [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
|
### Deprecated
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
<configuration>
|
<configuration>
|
||||||
|
<shutdownHook class="ch.qos.logback.core.hook.DelayingShutdownHook"/>
|
||||||
|
|
||||||
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
||||||
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
|
<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>
|
</filter>
|
||||||
|
|
||||||
<file>log/latest.log</file>
|
<file>log/latest.log</file>
|
||||||
|
|
Loading…
Reference in a new issue