Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fernandocanizo/045ddc31a03fd80947287f178742c798 to your computer and use it in GitHub Desktop.
Save fernandocanizo/045ddc31a03fd80947287f178742c798 to your computer and use it in GitHub Desktop.
Console logging with style (browser only)
const success = [
'background: green',
'color: white',
'display: block',
'text-align: center'
].join(';');
const failure = [
'background: red',
'color: white',
'display: block',
'text-align: center'
].join(';');
console.info('%c /dancing/bears was Successful!', success);
console.log({data: {
name: 'Bob',
age: 'unknown'
}}); // "mocked" data response
console.error('%c /dancing/bats failed!', failure);
console.log('/dancing/bats Does not exist');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment