Skip to content
This repository was archived by the owner on Mar 10, 2026. It is now read-only.
This repository was archived by the owner on Mar 10, 2026. It is now read-only.

Middleware Context Question #42

Description

@enderv

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!

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions