Skip to content

Commit

Permalink
Merge pull request #891 from sania-16/sania
Browse files Browse the repository at this point in the history
changing link in banner
  • Loading branch information
sonalgoyal authored Sep 16, 2024
2 parents 38f24a6 + 691d010 commit f6de43d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public void printAnalyticsBanner(boolean collectMetrics) {
LOG.info("* runtime parameters. However, no user's personal data or application *");
LOG.info("* data is captured. If you want to switch off this feature, please *");
LOG.info("* set the flag collectMetrics to false in config. For details, please *");
LOG.info("* refer to the Zingg docs (https://docs.zingg.ai/docs/security.html) *");
LOG.info("* refer to the Zingg docs (https://docs.zingg.ai/zingg/security) *");
LOG.info("**************************************************************************");
LOG.info("");
}
Expand Down
4 changes: 2 additions & 2 deletions common/core/src/main/java/zingg/common/core/block/Canopy.java
Original file line number Diff line number Diff line change
Expand Up @@ -250,10 +250,10 @@ public void estimateElimCount() {
}
else if (hash1 != null && hash2 != null && hash1.equals(hash2)) {
dupeRemaining.add(r);
LOG.debug("NOT eliminatin " );
LOG.debug("NOT eliminating " );
}
else {
LOG.debug("eliminatin " + r);
LOG.debug("eliminating " + r);
}
}
elimCount = dupeN.size() - dupeRemaining.size();
Expand Down

0 comments on commit f6de43d

Please sign in to comment.