Skip to content

Commit

Permalink
fix lgging
Browse files Browse the repository at this point in the history
  • Loading branch information
elguardian committed Oct 14, 2024
1 parent 918ee04 commit 85c2a2b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static String globalProperty(String propertyName) {
*/
public static boolean isTransactionEnabled(Generator generator, KogitoBuildContext context) {
boolean propertyValue = getProperty(generator, context, TRANSACTION_ENABLED, Boolean::parseBoolean, true);
LOG.info("trying to compute property {} for generator {} property with value {}", generator.name(), TRANSACTION_ENABLED, propertyValue);
LOG.info("trying to compute property {} for generator {} property with value {}", TRANSACTION_ENABLED, generator.name(), propertyValue);
return propertyValue;
}

Expand Down

0 comments on commit 85c2a2b

Please sign in to comment.