diff --git a/core/runtime/src/main/java/io/quarkus/runtime/logging/CategoryBuildTimeConfig.java b/core/runtime/src/main/java/io/quarkus/runtime/logging/CategoryBuildTimeConfig.java
index 3ac342ef05436..f6345be593c4b 100644
--- a/core/runtime/src/main/java/io/quarkus/runtime/logging/CategoryBuildTimeConfig.java
+++ b/core/runtime/src/main/java/io/quarkus/runtime/logging/CategoryBuildTimeConfig.java
@@ -7,15 +7,13 @@
public class CategoryBuildTimeConfig {
/**
* The minimum log level for this category.
- * By default all categories are configured with INFO
minimum level.
+ * By default all categories are configured with DEBUG
minimum level.
*
- * To get runtime logging below INFO
, e.g. DEBUG
or TRACE
,
+ * To get runtime logging below DEBUG
, e.g. TRACE
,
* the minimum level has to be adjusted at build time, the right log level needs to be provided at runtime.
*
* As an example, to get TRACE
logging,
* minimum level needs to be at TRACE
and the runtime log level needs to match that.
- * To get DEBUG
logging,
- * minimum level needs to be set at DEBUG
or TRACE
(as well as runtime log level).
*/
@ConfigItem(defaultValue = "inherit")
public InheritableLevel minLevel;
diff --git a/core/runtime/src/main/java/io/quarkus/runtime/logging/LogBuildTimeConfig.java b/core/runtime/src/main/java/io/quarkus/runtime/logging/LogBuildTimeConfig.java
index 0c2b040cb2245..3fe8d6f0516d0 100644
--- a/core/runtime/src/main/java/io/quarkus/runtime/logging/LogBuildTimeConfig.java
+++ b/core/runtime/src/main/java/io/quarkus/runtime/logging/LogBuildTimeConfig.java
@@ -20,7 +20,7 @@ public class LogBuildTimeConfig {
/**
* The default minimum log level.
*/
- @ConfigItem(defaultValue = "INFO")
+ @ConfigItem(defaultValue = "DEBUG")
public Level minLevel;
/**
diff --git a/docs/src/main/asciidoc/cdi-reference.adoc b/docs/src/main/asciidoc/cdi-reference.adoc
index e19f96d670d7e..a9cb98c3c99c3 100644
--- a/docs/src/main/asciidoc/cdi-reference.adoc
+++ b/docs/src/main/asciidoc/cdi-reference.adoc
@@ -441,7 +441,6 @@ When using the dev mode (running `./mvnw clean compile quarkus:dev`), you can se
by enabling additional logging via the following line in your `application.properties`.
----
-quarkus.log.category."io.quarkus.arc.processor".min-level=DEBUG
quarkus.log.category."io.quarkus.arc.processor".level=DEBUG
----
diff --git a/docs/src/main/asciidoc/logging.adoc b/docs/src/main/asciidoc/logging.adoc
index 8c22f8f9353d2..454fcb346edbd 100644
--- a/docs/src/main/asciidoc/logging.adoc
+++ b/docs/src/main/asciidoc/logging.adoc
@@ -128,11 +128,10 @@ for example, to set the default log level to `INFO` logging and include Hibernat
[source, properties]
----
quarkus.log.level=INFO
-quarkus.log.category."org.hibernate".min-level=DEBUG
quarkus.log.category."org.hibernate".level=DEBUG
----
-Setting a log level below `INFO` requires the minimum log level to be adjusted,
+Setting a log level below `DEBUG` requires the minimum log level to be adjusted,
either globally via the `quarkus.log.min-level` property or per-category as shown in the example above,
as well as adjusting the log level itself.
@@ -144,7 +143,7 @@ resulting in dead code elimination for code that will never to be executed.
All possible properties are listed in <>.
NOTE: If you are adding these properties via command line make sure `"` is escaped.
-For example `-Dquarkus.log.category.\"org.hibernate\".level=DEBUG`.
+For example `-Dquarkus.log.category.\"org.hibernate\".level=TRACE`.
=== Logging categories
@@ -158,7 +157,7 @@ These can also be overridden by attaching a one or more named handlers to a cate
|===
|Property Name|Default|Description
|quarkus.log.category."".level|INFO footnote:[Some extensions may define customized default log levels for certain categories, in order to reduce log noise by default. Setting the log level in configuration will override any extension-defined log levels.]|The level to use to configure the category named ``. The quotes are necessary.
-|quarkus.log.category."".min-level|INFO |The minimum logging level to use to configure the category named ``. The quotes are necessary.
+|quarkus.log.category."".min-level|DEBUG |The minimum logging level to use to configure the category named ``. The quotes are necessary.
|quarkus.log.category."".use-parent-handlers|true|Specify whether or not this logger should send its output to its parent logger.
|quarkus.log.category."".handlers=[]|empty footnote:[By default the configured category gets the same handlers attached as the one on the root logger.]|The names of the handlers that you want to attach to a specific category.
|===
@@ -174,7 +173,7 @@ The root logger category is handled separately, and is configured via the follow
|===
|Property Name|Default|Description
|quarkus.log.level|INFO|The default log level for every log category.
-|quarkus.log.min-level|INFO|The default minimum log level for every log category.
+|quarkus.log.min-level|DEBUG|The default minimum log level for every log category.
|===
If no level configuration exists for a given logger category, the enclosing (parent) category is examined. If no categories are configured which enclose the category in question, then the root logger configuration is used.
diff --git a/docs/src/main/asciidoc/mongodb-panache.adoc b/docs/src/main/asciidoc/mongodb-panache.adoc
index d2526104cec9f..0876846000158 100644
--- a/docs/src/main/asciidoc/mongodb-panache.adoc
+++ b/docs/src/main/asciidoc/mongodb-panache.adoc
@@ -651,7 +651,6 @@ This can be achieved by setting to DEBUG the following log category inside your
[source,properties]
----
-quarkus.log.category."io.quarkus.mongodb.panache.runtime".min-level=DEBUG
quarkus.log.category."io.quarkus.mongodb.panache.runtime".level=DEBUG
----
diff --git a/docs/src/main/asciidoc/optaplanner.adoc b/docs/src/main/asciidoc/optaplanner.adoc
index c41d3e199d013..10d712ccb345f 100644
--- a/docs/src/main/asciidoc/optaplanner.adoc
+++ b/docs/src/main/asciidoc/optaplanner.adoc
@@ -829,7 +829,6 @@ change the logging in the `application.properties` file or with a `-D` system pr
[source,properties]
----
-quarkus.log.category."org.optaplanner".min-level=debug
quarkus.log.category."org.optaplanner".level=debug
----
diff --git a/docs/src/main/asciidoc/vault-auth.adoc b/docs/src/main/asciidoc/vault-auth.adoc
index 0b300d4d35cb3..a65915d6a0d12 100644
--- a/docs/src/main/asciidoc/vault-auth.adoc
+++ b/docs/src/main/asciidoc/vault-auth.adoc
@@ -334,7 +334,6 @@ quarkus.datasource.jdbc.url = jdbc:postgresql://:5432/mydatabase
quarkus.vault.authentication.kubernetes.role=vault-quickstart-role
-quarkus.log.category."io.quarkus.vault".min-level=DEBUG
quarkus.log.category."io.quarkus.vault".level=DEBUG
----
diff --git a/extensions/elytron-security-properties-file/deployment/src/test/resources/application-custom-auth-embedded-encrypted.properties b/extensions/elytron-security-properties-file/deployment/src/test/resources/application-custom-auth-embedded-encrypted.properties
index 515b0a189e6e3..003f3e8f3a519 100644
--- a/extensions/elytron-security-properties-file/deployment/src/test/resources/application-custom-auth-embedded-encrypted.properties
+++ b/extensions/elytron-security-properties-file/deployment/src/test/resources/application-custom-auth-embedded-encrypted.properties
@@ -16,6 +16,4 @@ quarkus.security.users.embedded.roles.noadmin=user
quarkus.security.users.embedded.auth-mechanism=CUSTOM
quarkus.security.users.embedded.plain-text=false
-#quarkus.log.min-level=DEBUG
-#quarkus.log.level=DEBUG
#quarkus.log.console.level=DEBUG
\ No newline at end of file
diff --git a/extensions/elytron-security-properties-file/deployment/src/test/resources/application-custom-auth-embedded.properties b/extensions/elytron-security-properties-file/deployment/src/test/resources/application-custom-auth-embedded.properties
index 6906a4bf42905..d24d24cd7aabb 100644
--- a/extensions/elytron-security-properties-file/deployment/src/test/resources/application-custom-auth-embedded.properties
+++ b/extensions/elytron-security-properties-file/deployment/src/test/resources/application-custom-auth-embedded.properties
@@ -9,7 +9,3 @@ quarkus.security.users.embedded.roles.jdoe=NoRolesUser
quarkus.security.users.embedded.roles.noadmin=user
quarkus.security.users.embedded.auth-mechanism=CUSTOM
quarkus.security.users.embedded.plain-text=true
-
-#quarkus.log.min-level=DEBUG
-#quarkus.log.level=DEBUG
-#quarkus.log.console.level=DEBUG
\ No newline at end of file
diff --git a/extensions/elytron-security-properties-file/deployment/src/test/resources/application-custom-auth.properties b/extensions/elytron-security-properties-file/deployment/src/test/resources/application-custom-auth.properties
index 9feeb092b9813..3f44daa1d2e17 100644
--- a/extensions/elytron-security-properties-file/deployment/src/test/resources/application-custom-auth.properties
+++ b/extensions/elytron-security-properties-file/deployment/src/test/resources/application-custom-auth.properties
@@ -2,7 +2,3 @@ quarkus.security.users.file.enabled=true
quarkus.security.users.file.users=test-users.properties
quarkus.security.users.file.roles=test-roles.properties
quarkus.security.users.file.plain-text=true
-
-#quarkus.log.min-level=DEBUG
-#quarkus.log.level=DEBUG
-#quarkus.log.console.level=DEBUG
\ No newline at end of file
diff --git a/extensions/flyway/deployment/src/test/resources/migrate-at-start-config-named-datasource.properties b/extensions/flyway/deployment/src/test/resources/migrate-at-start-config-named-datasource.properties
index 516cdc7f038f6..c7ca3a02a4830 100644
--- a/extensions/flyway/deployment/src/test/resources/migrate-at-start-config-named-datasource.properties
+++ b/extensions/flyway/deployment/src/test/resources/migrate-at-start-config-named-datasource.properties
@@ -1,6 +1,3 @@
-#quarkus.log.category."org.flywaydb.core".min-level=DEBUG
-#quarkus.log.category."org.flywaydb.core".level=DEBUG
-#quarkus.log.category."io.quarkus.flyway".min-level=DEBUG
#quarkus.log.category."io.quarkus.flyway".level=DEBUG
quarkus.datasource.users.db-kind=h2
quarkus.datasource.users.username=sa
diff --git a/extensions/micrometer/deployment/src/test/resources/test-logging.properties b/extensions/micrometer/deployment/src/test/resources/test-logging.properties
index 5b3dd8a50f7c2..6eed6ab2596da 100644
--- a/extensions/micrometer/deployment/src/test/resources/test-logging.properties
+++ b/extensions/micrometer/deployment/src/test/resources/test-logging.properties
@@ -1,6 +1,4 @@
-#quarkus.log.category."io.quarkus.micrometer".min-level=DEBUG
#quarkus.log.category."io.quarkus.micrometer".level=DEBUG
quarkus.log.category."io.quarkus.bootstrap".level=INFO
-#quarkus.log.category."io.quarkus.arc".min-level=DEBUG
#quarkus.log.category."io.quarkus.arc".level=DEBUG
quarkus.log.category."io.netty".level=INFO
diff --git a/extensions/reactive-messaging-http/deployment/src/test/resources/websocket-sink-test-application.properties b/extensions/reactive-messaging-http/deployment/src/test/resources/websocket-sink-test-application.properties
index 3659986c40464..02d0bda2087cf 100644
--- a/extensions/reactive-messaging-http/deployment/src/test/resources/websocket-sink-test-application.properties
+++ b/extensions/reactive-messaging-http/deployment/src/test/resources/websocket-sink-test-application.properties
@@ -4,6 +4,3 @@ mp.messaging.outgoing.my-ws-sink.url=ws://localhost:${quarkus.http.test-port:808
mp.messaging.outgoing.ws-sink-with-serializer.connector=quarkus-websocket
mp.messaging.outgoing.ws-sink-with-serializer.url=ws://localhost:${quarkus.http.test-port:8081}/ws-target-url
mp.messaging.outgoing.ws-sink-with-serializer.serializer=io.quarkus.reactivemessaging.utils.ToUpperCaseSerializer
-
-quarkus.log.category."io.quarkus.reactivemessaging".min-level=DEBUG
-quarkus.log.category."io.quarkus.reactivemessaging".level=DEBUG
\ No newline at end of file
diff --git a/integration-tests/flyway/src/main/resources/application.properties b/integration-tests/flyway/src/main/resources/application.properties
index 1745b11fe25c8..bd965e1ad1524 100644
--- a/integration-tests/flyway/src/main/resources/application.properties
+++ b/integration-tests/flyway/src/main/resources/application.properties
@@ -1,7 +1,5 @@
quarkus.log.console.level=DEBUG
-quarkus.log.category."org.flywaydb.core".min-level=DEBUG
quarkus.log.category."org.flywaydb.core".level=DEBUG
-quarkus.log.category."io.quarkus.flyway".min-level=DEBUG
quarkus.log.category."io.quarkus.flyway".level=DEBUG
# Agroal config
quarkus.datasource.db-kind=h2
diff --git a/integration-tests/hibernate-orm-panache/src/main/resources/nopaging.properties b/integration-tests/hibernate-orm-panache/src/main/resources/nopaging.properties
index b8014d9b7e9ca..d15f255c940fa 100644
--- a/integration-tests/hibernate-orm-panache/src/main/resources/nopaging.properties
+++ b/integration-tests/hibernate-orm-panache/src/main/resources/nopaging.properties
@@ -5,5 +5,4 @@ quarkus.datasource.jdbc.max-size=8
quarkus.hibernate-orm.dialect=org.hibernate.dialect.H2Dialect
quarkus.hibernate-orm.database.generation=drop-and-create
-quarkus.log.category."org.hibernate.SQL".min-level=DEBUG
quarkus.log.category."org.hibernate.SQL".level=DEBUG
diff --git a/integration-tests/hibernate-reactive-panache/src/main/resources/nopaging.properties b/integration-tests/hibernate-reactive-panache/src/main/resources/nopaging.properties
index 793dc408f0b25..640a5e624b2fb 100644
--- a/integration-tests/hibernate-reactive-panache/src/main/resources/nopaging.properties
+++ b/integration-tests/hibernate-reactive-panache/src/main/resources/nopaging.properties
@@ -5,7 +5,6 @@ quarkus.datasource.reactive.url=${postgres.reactive.url}
quarkus.hibernate-orm.database.generation=drop-and-create
-quarkus.log.category."org.hibernate.SQL".min-level=DEBUG
quarkus.log.category."org.hibernate.SQL".level=DEBUG
# this is required otherwise SQL logs are formatted on multiple lines and we can't match them
quarkus.hibernate-orm.log.sql=false
diff --git a/integration-tests/liquibase/src/main/resources/application.properties b/integration-tests/liquibase/src/main/resources/application.properties
index c0a8c58abafea..7ae39ec618134 100644
--- a/integration-tests/liquibase/src/main/resources/application.properties
+++ b/integration-tests/liquibase/src/main/resources/application.properties
@@ -13,7 +13,5 @@ quarkus.liquibase.database-change-log-table-name=TEST_LOG
# Debug logging
#quarkus.log.console.level=DEBUG
-#quarkus.log.category."liquibase".min-level=DEBUG
#quarkus.log.category."liquibase".level=DEBUG
-#quarkus.log.category."io.quarkus.liquibase".min-level=DEBUG
#quarkus.log.category."io.quarkus.liquibase".level=DEBUG
diff --git a/integration-tests/logging-min-level-unset/src/test/java/io/quarkus/it/logging/minlevel/unset/LoggingMinLevelPromoteTest.java b/integration-tests/logging-min-level-unset/src/test/java/io/quarkus/it/logging/minlevel/unset/LoggingMinLevelPromoteTest.java
index 59823e68a3f10..8dfdb29d39301 100644
--- a/integration-tests/logging-min-level-unset/src/test/java/io/quarkus/it/logging/minlevel/unset/LoggingMinLevelPromoteTest.java
+++ b/integration-tests/logging-min-level-unset/src/test/java/io/quarkus/it/logging/minlevel/unset/LoggingMinLevelPromoteTest.java
@@ -11,9 +11,9 @@
/**
* This test verifies that log levels are promoted to min-level when set below the default min-level.
*
- * So given the default min-level is INFO,
+ * So given the default min-level is DEBUG,
* so if log level is set to TRACE,
- * it will be automatically promoted to INFO.
+ * it will be automatically promoted to DEBUG.
*/
@QuarkusTest
@QuarkusTestResource(SetRuntimeLogLevels.class)
diff --git a/integration-tests/micrometer-mp-metrics/src/main/resources/application.properties b/integration-tests/micrometer-mp-metrics/src/main/resources/application.properties
index cf1695317097c..81703227f14d6 100644
--- a/integration-tests/micrometer-mp-metrics/src/main/resources/application.properties
+++ b/integration-tests/micrometer-mp-metrics/src/main/resources/application.properties
@@ -1,4 +1,3 @@
-#quarkus.log.category."io.quarkus.micrometer".min-level=DEBUG
#quarkus.log.category."io.quarkus.micrometer".level=DEBUG
quarkus.log.category."io.quarkus.micrometer.runtime.binder.vertx".level=INFO
diff --git a/integration-tests/mongodb-panache-kotlin/src/main/resources/application.properties b/integration-tests/mongodb-panache-kotlin/src/main/resources/application.properties
index 7b06849469836..bde8c47826706 100644
--- a/integration-tests/mongodb-panache-kotlin/src/main/resources/application.properties
+++ b/integration-tests/mongodb-panache-kotlin/src/main/resources/application.properties
@@ -6,5 +6,4 @@ quarkus.mongodb.database=books
quarkus.mongodb.cl2.connection-string=mongodb://localhost:27018
quarkus.mongodb.cl2.write-concern.journal=false
-#quarkus.log.category."io.quarkus.mongodb.panache.runtime".min-level=DEBUG
#quarkus.log.category."io.quarkus.mongodb.panache.runtime".level=DEBUG
diff --git a/integration-tests/mongodb-panache/src/main/resources/application.properties b/integration-tests/mongodb-panache/src/main/resources/application.properties
index 630df929f4fdf..63810ad397a2a 100644
--- a/integration-tests/mongodb-panache/src/main/resources/application.properties
+++ b/integration-tests/mongodb-panache/src/main/resources/application.properties
@@ -6,6 +6,5 @@ quarkus.mongodb.database=books
quarkus.mongodb.cl2.connection-string=mongodb://localhost:27018
quarkus.mongodb.cl2.write-concern.journal=false
-#quarkus.log.category."io.quarkus.mongodb.panache.runtime".min-level=DEBUG
#quarkus.log.category."io.quarkus.mongodb.panache.runtime".level=DEBUG
quarkus.mongodb.metrics.enabled=true
diff --git a/integration-tests/reactive-pg-client/src/test/resources/application-tl.properties b/integration-tests/reactive-pg-client/src/test/resources/application-tl.properties
index 9658ab14d2754..54e42ebfd6ceb 100644
--- a/integration-tests/reactive-pg-client/src/test/resources/application-tl.properties
+++ b/integration-tests/reactive-pg-client/src/test/resources/application-tl.properties
@@ -3,5 +3,4 @@ quarkus.datasource.username=hibernate_orm_test
quarkus.datasource.password=hibernate_orm_test
quarkus.datasource.reactive.url=${reactive-postgres.url}
quarkus.datasource.reactive.thread-local=true
-quarkus.log.category."io.quarkus.reactive.datasource".min-level=DEBUG
quarkus.log.category."io.quarkus.reactive.datasource".level=DEBUG
diff --git a/integration-tests/vault-agroal/src/test/resources/application-vault-datasource.properties b/integration-tests/vault-agroal/src/test/resources/application-vault-datasource.properties
index ee8c68367772c..ce74f9f925674 100644
--- a/integration-tests/vault-agroal/src/test/resources/application-vault-datasource.properties
+++ b/integration-tests/vault-agroal/src/test/resources/application-vault-datasource.properties
@@ -22,11 +22,8 @@ quarkus.datasource.dynamicDS.credentials-provider=dynamic-ds
quarkus.datasource.dynamicDS.credentials-provider-name=vault-credentials-provider
quarkus.datasource.dynamicDS.jdbc.url=jdbc:postgresql://localhost:6543/mydb
-quarkus.log.category."io.quarkus.vault".min-level=DEBUG
quarkus.log.category."io.quarkus.vault".level=DEBUG
-quarkus.log.category."io.quarkus.vault.runtime.vault".min-level=DEBUG
quarkus.log.category."io.quarkus.vault.runtime.vault".level=DEBUG
-#quarkus.log.min-level=DEBUG
#quarkus.log.level=DEBUG
#quarkus.log.console.level=DEBUG
diff --git a/integration-tests/vault-app/src/main/resources/application.properties b/integration-tests/vault-app/src/main/resources/application.properties
index f63ecb4504ad1..1952a375ee81e 100644
--- a/integration-tests/vault-app/src/main/resources/application.properties
+++ b/integration-tests/vault-app/src/main/resources/application.properties
@@ -14,7 +14,6 @@ quarkus.vault.secret-config-kv-path=config
quarkus.vault.health.enabled=true
quarkus.vault.health.stand-by-ok=true
-quarkus.log.category."io.quarkus.vault".min-level=DEBUG
quarkus.log.category."io.quarkus.vault".level=DEBUG
quarkus.datasource.db-kind=postgresql
diff --git a/integration-tests/vault/src/test/resources/application-vault-approle-wrap.properties b/integration-tests/vault/src/test/resources/application-vault-approle-wrap.properties
index 1be87cc54992f..dbd05146c2832 100644
--- a/integration-tests/vault/src/test/resources/application-vault-approle-wrap.properties
+++ b/integration-tests/vault/src/test/resources/application-vault-approle-wrap.properties
@@ -10,12 +10,10 @@ quarkus.vault.tls.ca-cert=src/test/resources/vault-tls.crt
quarkus.vault.log-confidentiality-level=low
quarkus.vault.renew-grace-period=10
-quarkus.log.category."io.quarkus.vault".min-level=DEBUG
quarkus.log.category."io.quarkus.vault".level=DEBUG
# CI can sometimes be slow, there is no need to fail a test if Vault doesn't respond in 1 second which is the default
quarkus.vault.read-timeout=5S
-#quarkus.log.min-level=DEBUG
#quarkus.log.level=DEBUG
#quarkus.log.console.level=DEBUG
diff --git a/integration-tests/vault/src/test/resources/application-vault-approle.properties b/integration-tests/vault/src/test/resources/application-vault-approle.properties
index a14f92d50765f..9563b50fea6ae 100644
--- a/integration-tests/vault/src/test/resources/application-vault-approle.properties
+++ b/integration-tests/vault/src/test/resources/application-vault-approle.properties
@@ -10,12 +10,10 @@ quarkus.vault.tls.ca-cert=src/test/resources/vault-tls.crt
quarkus.vault.log-confidentiality-level=low
quarkus.vault.renew-grace-period=10
-quarkus.log.category."io.quarkus.vault".min-level=DEBUG
quarkus.log.category."io.quarkus.vault".level=DEBUG
# CI can sometimes be slow, there is no need to fail a test if Vault doesn't respond in 1 second which is the default
quarkus.vault.read-timeout=5S
-#quarkus.log.min-level=DEBUG
#quarkus.log.level=DEBUG
#quarkus.log.console.level=DEBUG
diff --git a/integration-tests/vault/src/test/resources/application-vault-client-token-wrap.properties b/integration-tests/vault/src/test/resources/application-vault-client-token-wrap.properties
index 5e2ac886172ad..7eeb017496d2f 100644
--- a/integration-tests/vault/src/test/resources/application-vault-client-token-wrap.properties
+++ b/integration-tests/vault/src/test/resources/application-vault-client-token-wrap.properties
@@ -9,13 +9,11 @@ quarkus.vault.tls.ca-cert=src/test/resources/vault-tls.crt
quarkus.vault.log-confidentiality-level=low
quarkus.vault.renew-grace-period=10
-quarkus.log.category."io.quarkus.vault".min-level=DEBUG
quarkus.log.category."io.quarkus.vault".level=DEBUG
# CI can sometimes be slow, there is no need to fail a test if Vault doesn't respond in 1 second which is the default
quarkus.vault.read-timeout=5S
-#quarkus.log.min-level=DEBUG
#quarkus.log.level=DEBUG
#quarkus.log.console.level=DEBUG
diff --git a/integration-tests/vault/src/test/resources/application-vault-kubernetes.properties b/integration-tests/vault/src/test/resources/application-vault-kubernetes.properties
index cf48cb8d3ed97..271bd62d1e4a3 100644
--- a/integration-tests/vault/src/test/resources/application-vault-kubernetes.properties
+++ b/integration-tests/vault/src/test/resources/application-vault-kubernetes.properties
@@ -10,12 +10,10 @@ quarkus.vault.tls.ca-cert=src/test/resources/vault-tls.crt
quarkus.vault.log-confidentiality-level=low
quarkus.vault.renew-grace-period=10
-quarkus.log.category."io.quarkus.vault".min-level=DEBUG
quarkus.log.category."io.quarkus.vault".level=DEBUG
# CI can sometimes be slow, there is no need to fail a test if Vault doesn't respond in 1 second which is the default
quarkus.vault.read-timeout=5S
-#quarkus.log.min-level=DEBUG
#quarkus.log.level=DEBUG
#quarkus.log.console.level=DEBUG
diff --git a/integration-tests/vault/src/test/resources/application-vault-userpass-kvv1-wrap.properties b/integration-tests/vault/src/test/resources/application-vault-userpass-kvv1-wrap.properties
index 21c363883bd6c..b22fc51e82ce7 100644
--- a/integration-tests/vault/src/test/resources/application-vault-userpass-kvv1-wrap.properties
+++ b/integration-tests/vault/src/test/resources/application-vault-userpass-kvv1-wrap.properties
@@ -13,12 +13,10 @@ quarkus.vault.tls.ca-cert=src/test/resources/vault-tls.crt
quarkus.vault.log-confidentiality-level=low
quarkus.vault.renew-grace-period=10
-quarkus.log.category."io.quarkus.vault".min-level=DEBUG
quarkus.log.category."io.quarkus.vault".level=DEBUG
# CI can sometimes be slow, there is no need to fail a test if Vault doesn't respond in 1 second which is the default
quarkus.vault.read-timeout=5S
-#quarkus.log.min-level=DEBUG
#quarkus.log.level=DEBUG
#quarkus.log.console.level=DEBUG
diff --git a/integration-tests/vault/src/test/resources/application-vault-userpass-kvv2-wrap.properties b/integration-tests/vault/src/test/resources/application-vault-userpass-kvv2-wrap.properties
index e913eb3d9b924..8994c8fb544d2 100644
--- a/integration-tests/vault/src/test/resources/application-vault-userpass-kvv2-wrap.properties
+++ b/integration-tests/vault/src/test/resources/application-vault-userpass-kvv2-wrap.properties
@@ -10,12 +10,10 @@ quarkus.vault.tls.ca-cert=src/test/resources/vault-tls.crt
quarkus.vault.log-confidentiality-level=low
quarkus.vault.renew-grace-period=10
-quarkus.log.category."io.quarkus.vault".min-level=DEBUG
quarkus.log.category."io.quarkus.vault".level=DEBUG
# CI can sometimes be slow, there is no need to fail a test if Vault doesn't respond in 1 second which is the default
quarkus.vault.read-timeout=5S
-#quarkus.log.min-level=DEBUG
#quarkus.log.level=DEBUG
#quarkus.log.console.level=DEBUG
diff --git a/integration-tests/vault/src/test/resources/application-vault.properties b/integration-tests/vault/src/test/resources/application-vault.properties
index cc80d8713cd7c..d8a64caddb801 100644
--- a/integration-tests/vault/src/test/resources/application-vault.properties
+++ b/integration-tests/vault/src/test/resources/application-vault.properties
@@ -18,12 +18,10 @@ quarkus.vault.tls.ca-cert=src/test/resources/vault-tls.crt
quarkus.vault.log-confidentiality-level=low
quarkus.vault.renew-grace-period=10
-quarkus.log.category."io.quarkus.vault".min-level=DEBUG
quarkus.log.category."io.quarkus.vault".level=DEBUG
# CI can sometimes be slow, there is no need to fail a test if Vault doesn't respond in 1 second which is the default
quarkus.vault.read-timeout=5S
-#quarkus.log.min-level=DEBUG
#quarkus.log.level=DEBUG
#quarkus.log.console.level=DEBUG