Skip to content

Instantly share code, notes, and snippets.

@Aschen
Created May 4, 2020 09:59
Show Gist options
  • Save Aschen/6a7665c67b277c65dbf647758b196da2 to your computer and use it in GitHub Desktop.
Save Aschen/6a7665c67b277c65dbf647758b196da2 to your computer and use it in GitHub Desktop.
const log = message => {
const requestId = asyncLocalStorage.getStore();
if (requestId) {
console.log(`[${requestId}] ${message}`);
}
else {
console.log(message);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment