Skip to content

Commit

Permalink
Add messages to tracking
Browse files Browse the repository at this point in the history
  • Loading branch information
gagik committed Dec 6, 2024
1 parent 857c8c0 commit 841864b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/telemetry/telemetryService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ type ParticipantFeedbackProperties = {
type ParticipantResponseFailedProperties = {
command: ParticipantResponseType;
error_code?: string;
error_message?: string;
error_name: ParticipantErrorTypes;
};

Expand Down Expand Up @@ -516,6 +517,7 @@ export default class TelemetryService {
command,
error_code: errorCode,
error_name: errorName,
error_message: message,
} satisfies ParticipantResponseFailedProperties);
}

Expand Down

0 comments on commit 841864b

Please sign in to comment.