This is an automated email from the ASF dual-hosted git repository.
dimas pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 8339b6766 nit: fix admin tool log level and comments (#1626)
8339b6766 is described below
commit 8339b676659bc9dbbc60347bb419aa2a060251d0
Author: Dmitri Bourlatchkov <[email protected]>
AuthorDate: Tue May 20 14:17:00 2025 -0400
nit: fix admin tool log level and comments (#1626)
The previous WARNING log levels seems to work, but WARN
aligns better with standard Quarkus log levels.
Fixes #1612
---
quarkus/admin/src/main/resources/application.properties | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/quarkus/admin/src/main/resources/application.properties
b/quarkus/admin/src/main/resources/application.properties
index 1828df6e8..d25416810 100644
--- a/quarkus/admin/src/main/resources/application.properties
+++ b/quarkus/admin/src/main/resources/application.properties
@@ -51,6 +51,7 @@ quarkus.index-dependency.protobuf.group-id=com.google.protobuf
quarkus.index-dependency.protobuf.artifact-id=protobuf-java
quarkus.datasource.devservices.image-name=postgres:17-alpine
-# ---- Logging Configuration ----
-# Set root logging level to WARNING to suppress INFO logs
-quarkus.log.level=WARNING
\ No newline at end of file
+## Logging Configuration
+# Set root logging level to WARN to avoid mostly irrelevant Quarkus log
messages.
+# The Admin tool communicates with the user via STDOUT/STDERR
+quarkus.log.level=WARN
\ No newline at end of file