diff options
author | 2021-12-21 17:37:13 -0800 | |
---|---|---|
committer | 2021-12-21 17:37:13 -0800 | |
commit | 834e8359ee4ae492f97ab25727ef8626cbe8f9bd (patch) | |
tree | ca3b98e5fc240a9c67b0b1927ec6d027058a7773 /src | |
parent | 503f70bba4bf8b4ff67a25c134766175c9ac9c54 (diff) | |
download | bun-834e8359ee4ae492f97ab25727ef8626cbe8f9bd.tar.gz bun-834e8359ee4ae492f97ab25727ef8626cbe8f9bd.tar.zst bun-834e8359ee4ae492f97ab25727ef8626cbe8f9bd.zip |
Don't print bytes in error messages
Diffstat (limited to 'src')
-rw-r--r-- | src/install/install.zig | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/install/install.zig b/src/install/install.zig index 158706a36..c57bd3ec8 100644 --- a/src/install/install.zig +++ b/src/install/install.zig @@ -4430,7 +4430,9 @@ pub const PackageManager = struct { } const response = task.http.response orelse { if (comptime log_level != .silent) { - Output.prettyErrorln("Failed to download package manifest for package {s}", .{name}); + Output.prettyErrorln("Failed to download package manifest for package {s}", .{ + name.slice(), + }); Output.flush(); } continue; |