Skip to content

Commit 8374edf

Browse files
committed
adding app name and removing log lines
1 parent 2c5bbc7 commit 8374edf

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

spring-boot-examples/workflows/src/test/java/io/dapr/springboot/examples/wfp/DaprTestContainersConfig.java

-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ public DaprContainer daprContainer() {
3333
return new DaprContainer(DAPR_RUNTIME_IMAGE_TAG)
3434
.withAppName("workflow-patterns-app")
3535
.withComponent(new Component("kvstore", "state.in-memory", "v1", Collections.singletonMap("actorStateStore", String.valueOf(true))))
36-
// .withDaprLogLevel(DaprLogLevel.DEBUG)
37-
// .withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
3836
.withAppPort(8080)
3937
.withAppHealthCheckPath("/actuator/health")
4038
.withAppChannelAddress("host.testcontainers.internal");
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
spring.application.name=workflow-patterns-app

0 commit comments

Comments
 (0)