diff options
author | 2023-06-07 11:14:21 -0700 | |
---|---|---|
committer | 2023-06-07 11:14:21 -0700 | |
commit | cfd68a4e9b819cf5a4f5b7541f965f17bfdeaa21 (patch) | |
tree | ea40f458b6f32dfe53935c6f7c8e0e8274365611 | |
parent | dba07b8675f251528b7c68fe9c6dda2fd8a98e51 (diff) | |
download | bun-cfd68a4e9b819cf5a4f5b7541f965f17bfdeaa21.tar.gz bun-cfd68a4e9b819cf5a4f5b7541f965f17bfdeaa21.tar.zst bun-cfd68a4e9b819cf5a4f5b7541f965f17bfdeaa21.zip |
Remove log
-rw-r--r-- | src/bun.js/api/JSBundler.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bun.js/api/JSBundler.zig b/src/bun.js/api/JSBundler.zig index 888e94b1f..21003eabf 100644 --- a/src/bun.js/api/JSBundler.zig +++ b/src/bun.js/api/JSBundler.zig @@ -952,7 +952,6 @@ pub const JSBundler = struct { const importer_string = ZigString.fromUTF8(importer); // TODO: improve this for virtual modules const resolve_dir = std.fs.path.dirname(importer) orelse "/"; - std.debug.print("{s}\n", .{resolve_dir}); const resolve_dir_string = ZigString.fromUTF8(resolve_dir); JSBundlerPlugin__matchOnResolve(globalThis, this, &namespace_string, &path_string, &importer_string, context, @enumToInt(import_record_kind), &resolve_dir_string); } |