diff options
author | 2021-10-25 17:06:38 -0700 | |
---|---|---|
committer | 2021-10-25 17:06:38 -0700 | |
commit | e69f8c36d250454595bee54699b809c8f78142ef (patch) | |
tree | c3642c75cfbd8006d77c29bd948980edd127ba95 | |
parent | e7f191c08b3d358ac72828c84eb0398f282d7b11 (diff) | |
download | bun-jarred/rewrite-router.tar.gz bun-jarred/rewrite-router.tar.zst bun-jarred/rewrite-router.zip |
[router] Don't log the route names since that's not necessary anymorejarred/rewrite-router
-rw-r--r-- | src/router.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/router.zig b/src/router.zig index ad1c2ad0e..2be202584 100644 --- a/src/router.zig +++ b/src/router.zig @@ -322,7 +322,6 @@ const RouteLoader = struct { .route = route, .hash = route.full_hash, }); - Output.prettyErrorln("Route: {s}", .{route.name}); } var dynamic: []*Route = &[_]*Route{}; |