diff --git a/server/src/com/mirth/connect/model/ServerEvent.java b/server/src/com/mirth/connect/model/ServerEvent.java index 1d4a956ea..b0d61fb2a 100644 --- a/server/src/com/mirth/connect/model/ServerEvent.java +++ b/server/src/com/mirth/connect/model/ServerEvent.java @@ -259,7 +259,7 @@ public String toExportStringWithNoId() { // Round the event time because SQLServer automatically rounds the milliseconds of its // DATETIMEs. This allows us to consistently compare ServerEvents from the database // to in-memory ones. - Date roundedEventTime = new Date(Math.round(eventTime.getTimeInMillis() / 10.0)); + Date roundedEventTime = new Date(Math.round(eventTime.getTimeInMillis() / 1000.0)); builder.append(new SimpleDateFormat(Exportable.DATE_TIME_FORMAT).format(roundedEventTime) + ", "); builder.append(level + ", ");