Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
kvargha committed Feb 13, 2025
1 parent 4bef47c commit 620dc58
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ public boolean hasTransformerLogicChanged(int currentClassHash, OffsetRecord off
Integer persistedClassHash = offsetRecord.getRecordTransformerClassHash();

if (persistedClassHash != null && persistedClassHash == currentClassHash) {
LOGGER.info("Transformer logic hasn't changed. Class hash = {}", currentClassHash);
LOGGER.info("Transformer logic hasn't changed. Class hash: {}", currentClassHash);
return false;
}
LOGGER.info(
"A change in transformer logic has been detected. Persisted class hash = {}. New class hash = {}",
"A change in transformer logic has been detected. Persisted class hash: {}. New class hash: {}",
persistedClassHash,
currentClassHash);
return true;
Expand Down

0 comments on commit 620dc58

Please sign in to comment.