Skip to content

Instantly share code, notes, and snippets.

@kidsil
Created June 10, 2020 11:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kidsil/a930299e694a9653a17bd5f130dae5e6 to your computer and use it in GitHub Desktop.
Save kidsil/a930299e694a9653a17bd5f130dae5e6 to your computer and use it in GitHub Desktop.
VS Code console.log snippet with filename & line number
"Console_Log_File": {
"prefix": "clg",
"body": [
"console.log('${TM_FILENAME}#${TM_LINE_NUMBER}: ', ${1:var});"
]
}
//expands clg to console.log('filename.js#line-number: , VAR);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment