diff options
author | 2022-06-10 02:27:13 -0700 | |
---|---|---|
committer | 2022-06-10 02:27:13 -0700 | |
commit | 89c182e9c5bc06590270b4c35eaff9cc4e882722 (patch) | |
tree | 2fe89e617ce9be22e50a3b19d1f8ea1dc8796e62 | |
parent | e441360ca7bd0f72a950adde09d3975afa2f5249 (diff) | |
download | bun-89c182e9c5bc06590270b4c35eaff9cc4e882722.tar.gz bun-89c182e9c5bc06590270b4c35eaff9cc4e882722.tar.zst bun-89c182e9c5bc06590270b4c35eaff9cc4e882722.zip |
Show tracing
-rw-r--r-- | src/bundler.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bundler.zig b/src/bundler.zig index f63ca9964..c3f339436 100644 --- a/src/bundler.zig +++ b/src/bundler.zig @@ -1529,7 +1529,7 @@ pub const Bundler = struct { ); } - if (FeatureFlags.tracing and bundler.options.log.level == .info) { + if (FeatureFlags.tracing and bundler.options.log.level.atLeast(.info)) { Output.prettyErrorln( "<r><d>\n---Tracing---\nResolve time: {d}\nParsing time: {d}\n---Tracing--\n\n<r>", .{ |