diff --git a/src/main/resources/application-integration.properties b/src/main/resources/application-integration.properties index e348cae1..089bad1d 100644 --- a/src/main/resources/application-integration.properties +++ b/src/main/resources/application-integration.properties @@ -1,5 +1,6 @@ quarkus.profile=local quarkus.http.port=${SERVER_PORT:8080} +quarkus.log.category."org.jboss.resteasy.reactive.client.logging".level=${REST_CLIENT_LOG_LEVEL:INFO} quarkus.datasource.db-kind=${MODEL_DB_TYPE:postgresql} quarkus.datasource.username=${MODEL_DB_USERNAME:user} quarkus.datasource.password=${MODEL_DB_PASSWORD:password} diff --git a/src/main/resources/application-local.properties b/src/main/resources/application-local.properties index e6775fd5..8f321387 100644 --- a/src/main/resources/application-local.properties +++ b/src/main/resources/application-local.properties @@ -1,5 +1,6 @@ quarkus.profile=local quarkus.http.port=${SERVER_PORT:8080} +quarkus.log.category."org.jboss.resteasy.reactive.client.logging".level=${REST_CLIENT_LOG_LEVEL:INFO} quarkus.datasource.db-kind=${MODEL_DB_TYPE:postgresql} quarkus.datasource.username=${MODEL_DB_USERNAME:postgres} quarkus.datasource.password=${MODEL_DB_PASSWORD:password} @@ -29,3 +30,4 @@ object-store.bucket.endpoint-override=http://127.0.0.1:9999 object-store.bpmn.path-template=${MODEL_OBJECT_STORE_BPMN_TEMPLATE_PATH:BPMN/files/UUID/[uuid]/VERSION/[version]} quarkus.resteay-reactive.input-buffer-size=10000 +