mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-28 18:03:14 +08:00
DebugScreen: Do not show microseconds
Way too much info
This commit is contained in:
@ -70,7 +70,7 @@ class _DebugScreenState extends State<DebugScreen> {
|
|||||||
textStyle = textStyle.copyWith(color: _colorForLevel(msg.l));
|
textStyle = textStyle.copyWith(color: _colorForLevel(msg.l));
|
||||||
|
|
||||||
var dt = DateTime.fromMillisecondsSinceEpoch(msg.t);
|
var dt = DateTime.fromMillisecondsSinceEpoch(msg.t);
|
||||||
var timeStr = dt.toIso8601String().substring(11);
|
var timeStr = dt.toIso8601String().substring(11, 11 + 8);
|
||||||
var str = ' ' + msg.msg;
|
var str = ' ' + msg.msg;
|
||||||
|
|
||||||
if (msg.ex != null) {
|
if (msg.ex != null) {
|
||||||
|
Reference in New Issue
Block a user