Add hint that messages must be regularly received

This commit is contained in:
AsamK 2021-05-24 12:14:44 +02:00
parent 2a0bba62be
commit cfc818872f
4 changed files with 31 additions and 1 deletions

View file

@ -14,7 +14,7 @@ public class DateUtils {
public static String formatTimestamp(long timestamp) {
var date = new Date(timestamp);
final DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSX"); // Quoted "Z" to indicate UTC, no timezone offset
final DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSX");
df.setTimeZone(tzUTC);
return timestamp + " (" + df.format(date) + ")";
}