fix: Change console hours to 24h format

- Resolves: #571
This commit is contained in:
NaiJi 2024-12-15 21:53:00 -05:00
parent 447ee39cbd
commit 35cbcebacb

View file

@ -34,7 +34,7 @@ sealed class ConsoleLog {
'"data":{\n$content\n}'
'\n}';
static final DateFormat _formatter = DateFormat('hh:mm:ss');
static final DateFormat _formatter = DateFormat('HH:mm:ss');
String get timeString => _formatter.format(time);
String get fullUTCString => time.toUtc().toIso8601String();