Merge pull request #5228 from kellykelly3/1350-Timeline-exception

1350 - Fixed timeline exception
This commit is contained in:
Richard Cordovano 2019-09-19 12:33:48 -04:00 committed by GitHub
commit 87a4a5bb94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -770,8 +770,11 @@ final public class ViewFrame extends BorderPane {
Notifications.create().owner(getScene().getWindow())
.text(Bundle.ViewFrame_pickerListener_errorMessage())
.showError();
logger.log(Level.SEVERE, "Error responding to date/time picker change.", ex);
logger.log(Level.WARNING, "Error responding to date/time picker change.", ex); //NON-NLS
} catch (IllegalArgumentException ex ) {
logger.log(Level.INFO, "Timeline: User supplied invalid time range."); //NON-NLS
}
Platform.runLater(ViewFrame.this::refreshTimeUI);
}
}