mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-06-13 07:10:26 +08:00
Update extension.ts
eventName typo
This commit is contained in:
@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user