From 8224261f1670bc582705ada4f85d91e271cf1e24 Mon Sep 17 00:00:00 2001 From: alex-kovalenko1982 <69167029+alex-kovalenko1982@users.noreply.github.com> Date: Tue, 10 Sep 2024 15:00:08 +0200 Subject: [PATCH] Remove config-jdbc Repository stacktrace printing Fixes #268 --- .../main/java/io/quarkiverse/config/jdbc/runtime/Repository.java | 1 - 1 file changed, 1 deletion(-) diff --git a/jdbc/runtime/src/main/java/io/quarkiverse/config/jdbc/runtime/Repository.java b/jdbc/runtime/src/main/java/io/quarkiverse/config/jdbc/runtime/Repository.java index ae7e116..ba99457 100644 --- a/jdbc/runtime/src/main/java/io/quarkiverse/config/jdbc/runtime/Repository.java +++ b/jdbc/runtime/src/main/java/io/quarkiverse/config/jdbc/runtime/Repository.java @@ -44,7 +44,6 @@ public synchronized Map getAllConfigValues() { return result; } } catch (SQLException e) { - e.printStackTrace(); log.trace("config-jdbc: could not get values: " + e.getLocalizedMessage()); return Collections.emptyMap(); }