mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-05 12:49:08 -04:00
feat: add more toString overrides for debugging
This commit is contained in:
parent
beed516c89
commit
9f346c99f7
26 changed files with 175 additions and 18 deletions
|
@ -109,5 +109,8 @@ class Commit {
|
|||
void free() => bindings.free(_commitPointer);
|
||||
|
||||
@override
|
||||
String toString() => 'Commit{oid: $oid}';
|
||||
String toString() {
|
||||
return 'Commit{oid: $oid, message: $message, messageEncoding: $messageEncoding, '
|
||||
'time: $time, committer: $committer, author: $author}';
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue