use new ServiceLoader based log configurator

This commit is contained in:
Sebastian Stenzel
2022-08-11 18:14:54 +02:00
parent 5267a04491
commit ec7ad0f479
9 changed files with 181 additions and 231 deletions

View File

@@ -1,4 +1,6 @@
import ch.qos.logback.classic.spi.Configurator;
import org.cryptomator.integrations.tray.TrayMenuController;
import org.cryptomator.logging.LogbackConfiguratorFactory;
import org.cryptomator.ui.traymenu.AwtTrayMenuController;
open module org.cryptomator.desktop {
@@ -38,6 +40,7 @@ open module org.cryptomator.desktop {
exports org.cryptomator.ui.traymenu to org.cryptomator.integrations.api;
provides TrayMenuController with AwtTrayMenuController;
provides Configurator with LogbackConfiguratorFactory;
exports org.cryptomator.ui.keyloading.hub to com.fasterxml.jackson.databind;
}