Use keys since you know, we have them

This commit is contained in:
Winston Liu 2021-01-22 21:07:58 -05:00
Родитель 56e2ceb273
Коммит 43019c784c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 76A2C5B5B8910B77
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -70,7 +70,7 @@ class TelemetryHelper {
public logError(layer: string, tracePoint: string, error: Error): void {
TelemetryHelper.reporter.sendTelemetryErrorEvent(
tracePoint, {
'journeyId': this.journeyId,
[TelemetryKeys.JourneyId]: this.journeyId,
'command': this.command,
'layer': layer,
'errorMessage': error.message,
@ -83,7 +83,7 @@ class TelemetryHelper {
public logInfo(layer: string, tracePoint: string, info: string): void {
TelemetryHelper.reporter.sendTelemetryEvent(
tracePoint, {
'journeyId': this.journeyId,
[TelemetryKeys.JourneyId]: this.journeyId,
'command': this.command,
'layer': layer,
'info': info
@ -138,13 +138,13 @@ class TelemetryHelper {
TelemetryHelper.reporter.sendTelemetryErrorEvent(
this.command, {
...this.properties,
journeyId: this.journeyId,
[TelemetryKeys.JourneyId]: this.journeyId,
}, undefined, ['error', 'errorMesage', 'stack']);
} else if (!(this.options.suppressIfSuccessful && this.properties.result === Result.Succeeded)) {
TelemetryHelper.reporter.sendTelemetryEvent(
this.command, {
...this.properties,
journeyId: this.journeyId,
[TelemetryKeys.JourneyId]: this.journeyId,
});
}
}