From ae6ae7071a53216316eed51b966dda4a18e6649f Mon Sep 17 00:00:00 2001 From: dankito Date: Mon, 10 Apr 2023 18:49:56 +0200 Subject: [PATCH] Disabled unwanted console output of Quarkus 2.x --- .../src/main/resources/application.properties | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/EpcQrCodeRest/src/main/resources/application.properties b/EpcQrCodeRest/src/main/resources/application.properties index dc8bd36..3bbeb7e 100644 --- a/EpcQrCodeRest/src/main/resources/application.properties +++ b/EpcQrCodeRest/src/main/resources/application.properties @@ -5,5 +5,18 @@ quarkus.http.cors=true quarkus.http.port=8080 %dev.quarkus.http.port=6543 + +# disable this output: +# Press [h] for more options> +# Tests paused +# Press [r] to resume testing, [h] for more options> +# Press [r] to resume testing, [o] Toggle test output, [h] for more options> +quarkus.test.continuous-testing=disabled +quarkus.console.disable-input=true + + +# Quarkus Native settings + + quarkus.native.enable-https-url-handler=true quarkus.native.enable-all-security-services=true \ No newline at end of file