condor-framework
condor-framework copied to clipboard
Middleware Context Question
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!
Hi. There are some issues in the error handling in the current implementation. I will be working on it during this week, and fixing it in 1.6
, which should be released during this or next week.
any updates on this?
No, sorry, I've been busy on other projects, and I haven't been able to work on this.