Last active
April 23, 2022 11:09
-
-
Save featherbear/8c4c0680c4eec387cd46aa3b19939033 to your computer and use it in GitHub Desktop.
Bunyan global import
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare global { | |
var logger: bunyan | |
} | |
import * as bunyan from 'bunyan' | |
globalThis.logger = bunyan.createLogger({ | |
name: "LOGGER" | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment