Skip to content

Commit

Permalink
app: Fix logging timestamp.
Browse files Browse the repository at this point in the history
  • Loading branch information
patniemeyer committed Feb 23, 2023
1 parent ab74d8b commit bb57cbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui-orchid/lib/api/orchid_log_api.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class LogLine {
this.date = DateTime.now();

String toStringWithDate() {
final timeStamp = DateTime.now().toIso8601String();
final timeStamp = date.toIso8601String();
return timeStamp + ': ' + text;
}

Expand Down

0 comments on commit bb57cbc

Please sign in to comment.