Skip to content

Commit

Permalink
Remove exessive logging
Browse files Browse the repository at this point in the history
  • Loading branch information
tajakobsen committed Aug 29, 2022
1 parent 659deb9 commit 2202af4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Gradle Project settings
projectName = xp-cristin
version = 1.0.0
version = 1.0.1

# XP App values
appDisplayName = Cristin Integration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,7 @@ function getAllEntriesFromRepo<Data>(connection: RepoConnection): Array<CristinN
}

function hasChanged<T>(x: T, y: T): boolean {
const cha = prepareForComparison(x) !== prepareForComparison(y);

if (cha) {
log.info(prepareForComparison(x));
log.info(prepareForComparison(y));
}

return cha;
return prepareForComparison(x) !== prepareForComparison(y);
}

/**
Expand Down

0 comments on commit 2202af4

Please sign in to comment.