This is an automated email from the ASF dual-hosted git repository. ppalaga pushed a commit to branch camel-4 in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit bb51eb883df39c1615018cccbbcb2795fca91e08 Author: Peter Palaga <[email protected]> AuthorDate: Fri Feb 3 10:14:54 2023 +0100 Avoid creating quarkus.log files in module directories --- .../foundation/direct/src/main/resources/application.properties | 1 + .../foundation/log/src/main/resources/application.properties | 1 + .../foundation/timer/src/main/resources/application.properties | 1 + .../foundation/type-converter/src/main/resources/application.properties | 1 + integration-tests/box/src/main/resources/application.properties | 1 + .../main-xml-jaxb/src/main/resources/application.properties | 1 + .../quartz-clustered/src/main/resources/application.properties | 1 + 7 files changed, 7 insertions(+) diff --git a/integration-test-groups/foundation/direct/src/main/resources/application.properties b/integration-test-groups/foundation/direct/src/main/resources/application.properties index f41fd22c99..b6ff2229d0 100644 --- a/integration-test-groups/foundation/direct/src/main/resources/application.properties +++ b/integration-test-groups/foundation/direct/src/main/resources/application.properties @@ -15,3 +15,4 @@ ## limitations under the License. ## --------------------------------------------------------------------------- quarkus.log.file.enable = true +quarkus.log.file.path = target/quarkus.log diff --git a/integration-test-groups/foundation/log/src/main/resources/application.properties b/integration-test-groups/foundation/log/src/main/resources/application.properties index f41fd22c99..b6ff2229d0 100644 --- a/integration-test-groups/foundation/log/src/main/resources/application.properties +++ b/integration-test-groups/foundation/log/src/main/resources/application.properties @@ -15,3 +15,4 @@ ## limitations under the License. ## --------------------------------------------------------------------------- quarkus.log.file.enable = true +quarkus.log.file.path = target/quarkus.log diff --git a/integration-test-groups/foundation/timer/src/main/resources/application.properties b/integration-test-groups/foundation/timer/src/main/resources/application.properties index f41fd22c99..b6ff2229d0 100644 --- a/integration-test-groups/foundation/timer/src/main/resources/application.properties +++ b/integration-test-groups/foundation/timer/src/main/resources/application.properties @@ -15,3 +15,4 @@ ## limitations under the License. ## --------------------------------------------------------------------------- quarkus.log.file.enable = true +quarkus.log.file.path = target/quarkus.log diff --git a/integration-test-groups/foundation/type-converter/src/main/resources/application.properties b/integration-test-groups/foundation/type-converter/src/main/resources/application.properties index f41fd22c99..b6ff2229d0 100644 --- a/integration-test-groups/foundation/type-converter/src/main/resources/application.properties +++ b/integration-test-groups/foundation/type-converter/src/main/resources/application.properties @@ -15,3 +15,4 @@ ## limitations under the License. ## --------------------------------------------------------------------------- quarkus.log.file.enable = true +quarkus.log.file.path = target/quarkus.log diff --git a/integration-tests/box/src/main/resources/application.properties b/integration-tests/box/src/main/resources/application.properties index a6cd55a5f2..5b8083055d 100644 --- a/integration-tests/box/src/main/resources/application.properties +++ b/integration-tests/box/src/main/resources/application.properties @@ -30,3 +30,4 @@ camel.component.box.clientId = {{env:BOX_CLIENT_ID}} camel.component.box.clientSecret = {{env:BOX_CLIENT_SECRET}} quarkus.log.file.enable = true +quarkus.log.file.path = target/quarkus.log diff --git a/integration-tests/main-xml-jaxb/src/main/resources/application.properties b/integration-tests/main-xml-jaxb/src/main/resources/application.properties index 1f300a8254..bd96184c9e 100644 --- a/integration-tests/main-xml-jaxb/src/main/resources/application.properties +++ b/integration-tests/main-xml-jaxb/src/main/resources/application.properties @@ -19,6 +19,7 @@ # Quarkus # quarkus.log.file.enable = true +quarkus.log.file.path = target/quarkus.log # # Camel diff --git a/integration-tests/quartz-clustered/src/main/resources/application.properties b/integration-tests/quartz-clustered/src/main/resources/application.properties index 3fc1b99e99..24e7cc0931 100644 --- a/integration-tests/quartz-clustered/src/main/resources/application.properties +++ b/integration-tests/quartz-clustered/src/main/resources/application.properties @@ -16,6 +16,7 @@ ## --------------------------------------------------------------------------- quarkus.banner.enabled = false quarkus.log.file.enable = true +quarkus.log.file.path = target/quarkus.log quarkus.log.file.rotation.rotate-on-boot = false quarkus.quartz.clustered = true
