Skip to content

Commit 580866e

Browse files
committed
Fix sonarlint issue.
1 parent 98f517e commit 580866e

File tree

1 file changed

+1
-1
lines changed
  • powertools-e2e-tests/src/test/java/software/amazon/lambda/powertools/testutils

1 file changed

+1
-1
lines changed

powertools-e2e-tests/src/test/java/software/amazon/lambda/powertools/testutils/Infrastructure.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ private Stack createStackWithLambda() {
228228
.value(functionName)
229229
.build();
230230

231-
LOG.debug("Building Lambda function with " + (isGraalVMEnabled ? "GraalVM" : "JVM") + " configuration");
231+
LOG.debug("Building Lambda function with {} configuration", isGraalVMEnabled ? "GraalVM" : "JVM");
232232
Function function = Function.Builder
233233
.create(e2eStack, functionName)
234234
.code(Code.fromAsset("handlers/", AssetOptions.builder()

0 commit comments

Comments
 (0)