From 42e6625f18c529ce620f09397b4a4d9b9f8aca99 Mon Sep 17 00:00:00 2001 From: Wouter Born Date: Sun, 8 Oct 2023 19:57:28 +0200 Subject: [PATCH] [jdbc] Fix logging not working (#15722) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The dependency change in #15659 caused slf4j to be embedded into the bundle. As a result the bundle no longer uses Pax Logging so it cannot find an SLF4J provider and logs the following when it is installed: SLF4J: No SLF4J providers were found. SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See https://www.slf4j.org/codes.html#noProviders for further details. Signed-off-by: Wouter Born Signed-off-by: Jørgen Austvik --- bundles/org.openhab.persistence.jdbc/pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/bundles/org.openhab.persistence.jdbc/pom.xml b/bundles/org.openhab.persistence.jdbc/pom.xml index c88d4a7c83b54..d3a6a3bae917b 100644 --- a/bundles/org.openhab.persistence.jdbc/pom.xml +++ b/bundles/org.openhab.persistence.jdbc/pom.xml @@ -39,6 +39,7 @@ org.slf4j slf4j-api ${slf4j.version} + provided commons-dbutils