Update extension.ts

eventName typo
This commit is contained in:
Marjori Pomarole
2023-04-11 20:21:26 -03:00
committed by GitHub
parent 1ee0889400
commit fd3a96145f

View File

@ -6,8 +6,8 @@ export function activate(context: vscode.ExtensionContext) {
const appender: vscode.TelemetryAppender = {
ignoreBuiltInCommonProperties: false,
logEvent: (evenName, data) => {
console.log(`Event: ${evenName}`);
logEvent: (eventName, data) => {
console.log(`Event: ${eventName}`);
console.log(`Data: ${JSON.stringify(data)}`);
},
logException: (exception, data) => {