Commit 1bdcbd18ae

Robin <mewmew@users.noreply.github.com>
2022-05-14 12:56:58
init-exe: add note about log_level in ReleaseSmall and ReleaseFast build mode (#11626)
As suggested in https://github.com/ziglang/zig/issues/9945#issuecomment-950114977 by @wizzard0. Fixes #9945.
1 parent 802f220
Changed files (1)
lib
init-exe
lib/init-exe/src/main.zig
@@ -1,6 +1,8 @@
 const std = @import("std");
 
 pub fn main() anyerror!void {
+    // Note that info level log messages are by default printed only in Debug
+    // and ReleaseSafe build modes.
     std.log.info("All your codebase are belong to us.", .{});
 }