Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Changed

- Add new log line to the compareResults function so we can estimate the amount of requests that are different.

## [1.78.0] - 2025-09-24

### Changed
Expand Down
6 changes: 6 additions & 0 deletions node/utils/compareResults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,12 @@ export async function compareApiResults<T>(
message: `${logPrefix}: Results differ`,
params: JSON.stringify(options.args),
})
} else if (areEqual) {
logger.info({
// Since the log level is indexed we are using it to get a sense of the % of results that are equal.
message: `${logPrefix}: Results differ`,
params: JSON.stringify(options.args),
})
}

if (!hasError1) {
Expand Down
Loading