diff options
| author | patrick-scho | 2024-08-21 17:12:30 +0200 |
|---|---|---|
| committer | patrick-scho | 2024-08-21 17:12:30 +0200 |
| commit | 5fee30bf784534a6f8d62a8f9be70f3bd6471f66 (patch) | |
| tree | f79ca4eb24b610acbf2a5a3dbb3391a3f4cb9258 /git.zig | |
| parent | 107927604089c6fc63b5f5fef633542352f5269d (diff) | |
| download | ziggit-5fee30bf784534a6f8d62a8f9be70f3bd6471f66.tar.gz ziggit-5fee30bf784534a6f8d62a8f9be70f3bd6471f66.zip | |
change debug output to include hash and data length
Diffstat (limited to 'git.zig')
| -rw-r--r-- | git.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -520,7 +520,7 @@ test "list blobs" { defer std.testing.allocator.free(bo.data); if (treeEntry.permissions.len == 6) { - std.debug.print("{s}: {s}\n", .{ treeEntry.name, bo.data[0..50] }); + std.debug.print("{s}: [{x} {}]{s}\n", .{ treeEntry.name, treeEntry.id, bo.data.len, bo.data[0..50] }); } else { std.debug.print("[{s}]\n", .{treeEntry.name}); } |
