From 958201cd18809447a5cb82931adc7f7d69626704 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=AA=E3=82=AD=E8=90=8C?= Date: Tue, 2 Sep 2025 20:30:47 +0200 Subject: [PATCH] h2: add better comment about how to use root.enableLogScope --- crates/haku2/src/haku2.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/haku2/src/haku2.zig b/crates/haku2/src/haku2.zig index cfadabe..136f21f 100644 --- a/crates/haku2/src/haku2.zig +++ b/crates/haku2/src/haku2.zig @@ -24,7 +24,7 @@ pub const std_options: std.Options = .{ pub fn enableLogScope(scope: @TypeOf(.enum_literal)) bool { // Replace any of the false returns below to enable log scopes for the build. if (scope == .vm) - return true + return false else return true; }