Update logging

Remove enter after console.log/warn/error.
Really ennoying...
This commit is contained in:
Milo Moisson
2020-06-20 18:26:14 +02:00
committed by GitHub
parent 9c142ea383
commit fc8b56a966

View File

@@ -173,8 +173,7 @@
"Log to the console": {
"prefix": "log",
"body": [
"console.log($1);",
"$0"
"console.log($1);"
],
"description": "Log to the console"
},
@@ -182,7 +181,6 @@
"prefix": "warn",
"body": [
"console.warn($1);",
"$0"
],
"description": "Log warning to the console"
},
@@ -190,7 +188,6 @@
"prefix": "error",
"body": [
"console.error($1);",
"$0"
],
"description": "Log error to the console"
}