Skip to content

Commit

Permalink
fix: Fix log messages for failed migration creation. (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
kinyoklion authored Sep 11, 2023
1 parent cadc90b commit 11179ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/shared/sdk-server/src/MigrationOpTracker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@ export default class MigrationOpTracker implements LDMigrationTracker {
}

private latencyConsistencyMessage(origin: LDMigrationOrigin) {
return `Latency measurement for "${origin}", but "new" was not invoked.`;
return `Latency measurement for "${origin}", but "${origin}" was not invoked.`;
}

private errorConsistencyMessage(origin: LDMigrationOrigin) {
return `Error occurred for "${origin}", but "new" was not invoked.`;
return `Error occurred for "${origin}", but "${origin}" was not invoked.`;
}

private consistencyCheckConsistencyMessage(origin: LDMigrationOrigin) {
Expand Down

0 comments on commit 11179ba

Please sign in to comment.