瀏覽代碼

change level of a log message from warn to debug

[ci skip]
Armin Schrenk 4 年之前
父節點
當前提交
61b7a39aad
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      main/ui/src/main/java/org/cryptomator/ui/fxapp/FxApplication.java

+ 1 - 1
main/ui/src/main/java/org/cryptomator/ui/fxapp/FxApplication.java

@@ -86,7 +86,7 @@ public class FxApplication extends Application {
 	}
 
 	private void hasVisibleStagesChanged(@SuppressWarnings("unused") ObservableValue<? extends Boolean> observableValue, @SuppressWarnings("unused") boolean oldValue, boolean newValue) {
-		LOG.warn("has visible stages: {}", newValue);
+		LOG.debug("has visible stages: {}", newValue);
 		if (newValue) {
 			trayIntegration.ifPresent(TrayIntegrationProvider::restoredFromTray);
 		} else {