You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit adds a config `angular.log` that mirrors
`typescript.tsserver.log` for setting log verbosity. This allows users
to turn on verbose logging for debugging / diagnostic purpose.
It would also help us gather much more info when users report errors.
The default value is set to 'terse', which is minimal logging.
Copy file name to clipboardExpand all lines: package.json
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,17 @@
31
31
"type": ["string", "null"],
32
32
"default": null,
33
33
"description": "Specifies the folder path to @angular/language-service."
34
+
},
35
+
"angular.log": {
36
+
"type": "string",
37
+
"enum": [
38
+
"off",
39
+
"terse",
40
+
"normal",
41
+
"verbose"
42
+
],
43
+
"default": "terse",
44
+
"description": "Enables logging of the Angular server to a file. This log can be used to diagnose Angular Server issues. The log may contain file paths, source code, and other potentially sensitive information from your project."
0 commit comments