change level of a log message from warn to debug

[ci skip]
This commit is contained in:
Armin Schrenk
2021-03-29 10:53:48 +02:00
parent 16bd84ee62
commit 61b7a39aad
@@ -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 {