authorgravatar for nathan@nmichaels.orgNathan Michaels <nathan@nmichaels.org> 2020-08-18 22:47:38-04:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2020-08-18 22:47:38-04:00
log4237f1afc7f38f68adf0877fc9be811f9189544f
tree3126ea9f92cd8caac9e6de9d8c9809e7b986928a
parent771f40204e769f92bb28bdb9c44e3ddd9d8c4386
signaturebadge-question-mark Signed by PGP key 4AEE18F83AFDEB23

Change std.debug.warn to std.log.info in init-exe template. (#5941)


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/special/init-exe/src/main.zig+1-1
...@@ -1,5 +1,5 @@...@@ -1,5 +1,5 @@
1const std = @import("std");1const std = @import("std");
22
3pub fn main() anyerror!void {3pub fn main() anyerror!void {
4 std.debug.warn("All your codebase are belong to us.\n", .{});4 std.log.info("All your codebase are belong to us.", .{});
5}5}