console.log.  But if you have an app that is already chatty in development mode with a lot of console messages, there is a way to make your console statement stand out.  You may not know that you can format your console statements with CSS.  For example:
console.log('%cExample', 'background: #a00; color: #fff; font-weight: bold; font-size: 110%');Example
A better way to do it, though, is to use a JavaScript template literal. For example:let xyz = 123;
console.log('%c%s', 'background: #a00; color: #fff; font-weight: bold; font-size: 110%', 
  `The value of xyz is ${xyz}`);The value of xyz is 123
Now to make it even easier, we can create a VS Code snippet:"color-console": {
 "prefix": "color-console",
 "body": [
  "console.log('%c%s', 'background: #a00; color: #fff; font-weight: bold; font-size: 110%', `$1`);"
 ],
 "description": "Color coded console message"
}, 
 
 
0 comments:
Post a Comment