Skip to content

Commit

Permalink
removed unnecessary loggers
Browse files Browse the repository at this point in the history
  • Loading branch information
waterflow80 committed Aug 17, 2023
1 parent c6c4e1f commit 96493aa
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,6 @@ public Map<String, String> constructSeqColLevelOneMap(Map<String, List<String>>
/**
* Return the level 0 digest of the given seqColLevelTwoMap, which is in the form of a Map (undefined attributes)*/
public String calculateSeqColLevelTwoMapDigest(Map<String, List<String>> seqColLevelTwoMap) throws IOException {
logger.info("Digesting level two map digest: " + seqColLevelTwoMap);
Map<String, String> seqColLevelOne = constructSeqColLevelOneMap(seqColLevelTwoMap);
String levelZeroDigest = calculateSeqColLevelOneMapDigest(seqColLevelOne);
return levelZeroDigest;
Expand All @@ -310,9 +309,7 @@ public String calculateSeqColLevelTwoMapDigest(Map<String, List<String>> seqColL
* Return the level 0 digest of the given seqColLevelOneMap, which is in the form of a Map (undefined attributes)*/
public String calculateSeqColLevelOneMapDigest(Map<String, String> seqColLevelOneMap) throws IOException {
String seqColStandardRepresentation = convertSeqColLevelOneAttributeToString(seqColLevelOneMap);
logger.info("Level one standard representation: " + seqColStandardRepresentation);
String levelZeroDigest = digestCalculator.getSha512Digest(seqColStandardRepresentation);
logger.info("Level zero map digest: " + levelZeroDigest);
return levelZeroDigest;
}

Expand Down

0 comments on commit 96493aa

Please sign in to comment.