diff options
author | 2022-06-10 02:27:03 -0700 | |
---|---|---|
committer | 2022-06-10 02:27:03 -0700 | |
commit | e441360ca7bd0f72a950adde09d3975afa2f5249 (patch) | |
tree | 44e44b0b4fc575c3c63bfa86cfd6bb1fa10b3a98 | |
parent | fc26e92b3e6463c62e10c7375fce24065547cc0b (diff) | |
download | bun-e441360ca7bd0f72a950adde09d3975afa2f5249.tar.gz bun-e441360ca7bd0f72a950adde09d3975afa2f5249.tar.zst bun-e441360ca7bd0f72a950adde09d3975afa2f5249.zip |
Update bunfig.zig
-rw-r--r-- | src/bunfig.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bunfig.zig b/src/bunfig.zig index 4fd3b7a55..94ee5e627 100644 --- a/src/bunfig.zig +++ b/src/bunfig.zig @@ -99,6 +99,7 @@ pub const Bunfig = struct { Matcher.case("debug") => Api.MessageLevel.debug, Matcher.case("error") => Api.MessageLevel.err, Matcher.case("warn") => Api.MessageLevel.warn, + Matcher.case("info") => Api.MessageLevel.info, else => { try this.addError(expr.loc, "Invalid log level, must be one of debug, error, or warn"); unreachable; |