Browse Source

disable confusing message of kwallet library

Armin Schrenk 2 months ago
parent
commit
4d4a93746d
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/main/java/org/cryptomator/logging/LogbackConfigurator.java

+ 3 - 0
src/main/java/org/cryptomator/logging/LogbackConfigurator.java

@@ -90,6 +90,9 @@ public class LogbackConfigurator extends ContextAwareBase implements Configurato
 			// configure fuse file locking logger:
 			Logger fuseLocking = context.getLogger("org.cryptomator.frontend.fuse.locks");
 			fuseLocking.setLevel(Level.OFF);
+			//deactivate kwallet unsettling message
+			Logger kdeWallet = context.getLogger("org.purejava.kwallet.freedesktop.dbus.handlers");
+			kdeWallet.setLevel(Level.OFF);
 		}
 		return ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY;
 	}