feat: override toString with relevant information for debugging

This commit is contained in:
Aleksey Kulikov 2021-09-10 12:03:37 +03:00
parent 188cdc4354
commit 458c0bdc71
6 changed files with 18 additions and 2 deletions

View file

@ -58,4 +58,7 @@ class RefLogEntry {
/// Returns the committer of this entry.
Signature get committer => Signature(bindings.entryCommiter(_entryPointer));
@override
String toString() => 'ReflogEntry{message: $message}';
}