Skip to content

Commit

Permalink
improving logging message
Browse files Browse the repository at this point in the history
Signed-off-by: Alfredo Gutierrez <[email protected]>
  • Loading branch information
AlfredoG87 committed Jan 9, 2025
1 parent 36d4df5 commit f417aa3
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,11 @@ public record VerificationConfig(
hashCombineBatchSize, "[VERIFICATION_HASH_COMBINE_BATCH_SIZE] must be even and greater than 2");

// Log the actual configuration
LOGGER.log(System.Logger.Level.INFO, "Verification configuration enabled: " + enabled);
LOGGER.log(System.Logger.Level.INFO, "Verification configuration sessionType: " + sessionType);
LOGGER.log(System.Logger.Level.INFO, "Verification Properties:");
LOGGER.log(System.Logger.Level.INFO, "verification.enabled - VERIFICATION_ENABLED : " + enabled);
LOGGER.log(System.Logger.Level.INFO, "verification.sessionType - VERIFICATION_SESSION_TYPE : " + sessionType);
LOGGER.log(
System.Logger.Level.INFO, "Verification configuration hashCombineBatchSize: " + hashCombineBatchSize);
System.Logger.Level.INFO,
"verification.hashCombineBatchSize - VERIFICATION_HASH_COMBINE_BATCH_SIZE : " + hashCombineBatchSize);
}
}

0 comments on commit f417aa3

Please sign in to comment.