-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
Been playing around a bit and so far this is pretty awesome. Have a question about the logging however.
In the documentation it lists this example
app.use(scope, (ctx, next) => {
// Log the request, response and continue
console.log('Request:', ctx.req);
return next().then((result) => {
console.log('Response:', result);
}).catch((error) => {
console.log('Logging error', error);
});
});
However I would be able to like to log the ctx.req with the result or error. So far the only idea I've had is just to tack on the context to the implementation return or error and then remove it from the result/ Error after logging. Just wanted to see if there was a better way to go about this that I might be missing.
Thanks!
Metadata
Metadata
Assignees
Labels
No labels