mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-07-04 11:49:53 +02:00
Reduce log level of LoggingExporter
The `info` level might lead to a lot of logs with automated processes, that do not have any value. Because often `info` is the default log level, we degrade this to `debug`.
This commit is contained in:
@@ -46,7 +46,7 @@ public final class LoggingExporter implements Exporter {
|
||||
|
||||
@Inject
|
||||
LoggingExporter() {
|
||||
this(LOG::info);
|
||||
this(LOG::debug);
|
||||
}
|
||||
|
||||
LoggingExporter(Consumer<String> logger) {
|
||||
|
||||
Reference in New Issue
Block a user