Skip to content

Commit

Permalink
Merge pull request #1 from BeerMoneyDev/LoggingFix
Browse files Browse the repository at this point in the history
feat(Logging): Fix up logging to log correctly in noArrayOrderingRequired scenarios.
  • Loading branch information
benMain authored Mar 2, 2021
2 parents 65a8755 + 8d7f0e1 commit 8731118
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/serially-equivalent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,13 @@ function objectEquivalence<T>(
}
} else {
if (
!internalSeriallyEquivalent(propA, propB, expandedPath, true, options)
!internalSeriallyEquivalent(
propA,
propB,
expandedPath,
shouldLog,
options,
)
) {
return false;
}
Expand Down

0 comments on commit 8731118

Please sign in to comment.