diff --git a/server.ts b/server.ts index 0b246c3..f133bae 100644 --- a/server.ts +++ b/server.ts @@ -24,11 +24,6 @@ router.get("/:path", async (ctx: ctx) => { ctx.response.status = 404; ctx.response.body = "Not Found"; } - - log( - `${ctx.request.method} ${ctx.request.url} - ${ctx.response.status}`, - "gray", - ); }); router.get("/:user/:kind.atom", async (ctx: ctx) => { @@ -40,11 +35,6 @@ router.get("/:user/:kind.atom", async (ctx: ctx) => { ctx.response.status = 404; ctx.response.body = "Not Found"; } - - log( - `${ctx.request.method} ${ctx.request.url} - ${ctx.response.status}`, - "gray", - ); }); router.get("/:user/:identifier", async (ctx: ctx) => { @@ -57,10 +47,6 @@ router.get("/:user/:identifier", async (ctx: ctx) => { ctx.response.body = "Not Found"; } - log( - `${ctx.request.method} ${ctx.request.url} - ${ctx.response.status}`, - "gray", - ); }); const app = new Application();