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:
René Pfeuffer
2022-12-12 16:11:41 +01:00
parent 6ec8041b8c
commit 13467685aa

View File

@@ -46,7 +46,7 @@ public final class LoggingExporter implements Exporter {
@Inject
LoggingExporter() {
this(LOG::info);
this(LOG::debug);
}
LoggingExporter(Consumer<String> logger) {