Skip to content

Instantly share code, notes, and snippets.

@arabold
Created April 13, 2020 14:04
Show Gist options
  • Save arabold/9f4279057650c3c8df5921fec10e9700 to your computer and use it in GitHub Desktop.
Save arabold/9f4279057650c3c8df5921fec10e9700 to your computer and use it in GitHub Desktop.
export function createSimpleLogger(asJson: boolean): LogHandlerFunc {
return function log(logEntry) {
console.log(asJson ? JSON.stringify(logEntry) : logEntry);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment