diff options
-rw-r--r-- | src/bun.js/bindings/shimmer.zig | 2 | ||||
-rw-r--r-- | src/jsc.zig | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bun.js/bindings/shimmer.zig b/src/bun.js/bindings/shimmer.zig index f9e56af31..f31c894cb 100644 --- a/src/bun.js/bindings/shimmer.zig +++ b/src/bun.js/bindings/shimmer.zig @@ -9,7 +9,7 @@ fn isNullableType(comptime Type: type) bool { (@typeInfo(Type) == .Pointer and @typeInfo(Type).Pointer.is_allowzero); } -const log = @import("../../output.zig").scoped(.CPP, false); +const log = @import("../../output.zig").scoped(.CPP, true); pub fn Shimmer(comptime _namespace: []const u8, comptime _name: []const u8, comptime Parent: type) type { return struct { pub const namespace = _namespace; diff --git a/src/jsc.zig b/src/jsc.zig index 1f3288746..b9e7b8db5 100644 --- a/src/jsc.zig +++ b/src/jsc.zig @@ -49,7 +49,7 @@ pub const jsBoolean = @This().JSValue.jsBoolean; const std = @import("std"); const Output = @import("./output.zig"); -const __jsc_log = Output.scoped(.JSC, false); +const __jsc_log = Output.scoped(.JSC, true); pub inline fn markBinding(src: std.builtin.SourceLocation) void { if (comptime is_bindgen) unreachable; __jsc_log("{s} ({s}:{d})", .{ src.fn_name, src.file, src.line }); |