Преглед изворни кода

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 {