Skip to content

Instantly share code, notes, and snippets.

@kingsley-einstein
Created September 14, 2020 11:32
Show Gist options
  • Save kingsley-einstein/82425d83dde0119b6ae4eee83957a86d to your computer and use it in GitHub Desktop.
Save kingsley-einstein/82425d83dde0119b6ae4eee83957a86d to your computer and use it in GitHub Desktop.
import debug from "debug";
const log = debug("logging");
export const logger = (req: any, res: any, next: any) {
log(`${req.path} +++++++++++++++++++ ${res.statusCode}`);
next();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment