From f417aa3ff9e4b383be123677e0e61d158c98fb54 Mon Sep 17 00:00:00 2001 From: Alfredo Gutierrez Date: Wed, 8 Jan 2025 23:02:17 -0600 Subject: [PATCH] improving logging message Signed-off-by: Alfredo Gutierrez --- .../block/server/verification/VerificationConfig.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/server/src/main/java/com/hedera/block/server/verification/VerificationConfig.java b/server/src/main/java/com/hedera/block/server/verification/VerificationConfig.java index 9b1ac9353..4066d1600 100644 --- a/server/src/main/java/com/hedera/block/server/verification/VerificationConfig.java +++ b/server/src/main/java/com/hedera/block/server/verification/VerificationConfig.java @@ -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); } }