diff --git a/example/test.ts b/example/test.ts index fd629b0..8dad9a1 100644 --- a/example/test.ts +++ b/example/test.ts @@ -22,9 +22,8 @@ httpServer.preprocessor((_req, rep) => { }); httpServer.middleware(async (req, _rep, done) => { - console.log(`${req.method} - ${req.remoteIpAddr} - ${req.path}`); const processTime = await done(); - console.log(`Processed in ${prettyTime(processTime)}`); + console.log(`${req.method} - ${req.remoteIpAddr} - ${req.path} - ${prettyTime(processTime)}`); }); httpServer.error((req, _rep) => {