diff options
| author | Nathan Michaels <nathan@nmichaels.org> | 2020-08-18 22:47:38 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-18 22:47:38 -0400 |
| commit | 4237f1afc7f38f68adf0877fc9be811f9189544f (patch) | |
| tree | 3126ea9f92cd8caac9e6de9d8c9809e7b986928a /lib/std | |
| parent | 771f40204e769f92bb28bdb9c44e3ddd9d8c4386 (diff) | |
| download | zig-4237f1afc7f38f68adf0877fc9be811f9189544f.tar.gz zig-4237f1afc7f38f68adf0877fc9be811f9189544f.zip | |
Change std.debug.warn to std.log.info in init-exe template. (#5941)
Diffstat (limited to 'lib/std')
| -rw-r--r-- | lib/std/special/init-exe/src/main.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/special/init-exe/src/main.zig b/lib/std/special/init-exe/src/main.zig index c6a70af56d..d29869ff88 100644 --- a/lib/std/special/init-exe/src/main.zig +++ b/lib/std/special/init-exe/src/main.zig @@ -1,5 +1,5 @@ const std = @import("std"); pub fn main() anyerror!void { - std.debug.warn("All your codebase are belong to us.\n", .{}); + std.log.info("All your codebase are belong to us.", .{}); } |
