Skip to content

Instantly share code, notes, and snippets.

@danew
Last active February 13, 2020 01:29
Show Gist options
  • Save danew/c3283c182e753d21e0358a1bf585f1d6 to your computer and use it in GitHub Desktop.
Save danew/c3283c182e753d21e0358a1bf585f1d6 to your computer and use it in GitHub Desktop.
Console log with colours and can filter by /\*/
window.log = function(category, ...attr) {
const str = `%c* %c${category} %c[%c ${attr.join(', ')} %c]`;
console.log(
str,
'color:white',
'color:red; font-weight:bold',
'font-weight:bold',
'color:blue',
'font-weight:bold'
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment