You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by re...@apache.org on 2023/01/25 15:05:06 UTC

[jackrabbit-oak] branch trunk updated: OAK-10085: oak-core-spi: bump up logging for deprecated Guava based APIs to ERROR

This is an automated email from the ASF dual-hosted git repository.

reschke pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 036e70e805 OAK-10085: oak-core-spi: bump up logging for deprecated Guava based APIs to ERROR
036e70e805 is described below

commit 036e70e805be97a0d0e32597e69a37a706f3af34
Author: Julian Reschke <ju...@gmx.de>
AuthorDate: Wed Jan 25 16:04:54 2023 +0100

    OAK-10085: oak-core-spi: bump up logging for deprecated Guava based APIs to ERROR
---
 .../src/main/java/org/apache/jackrabbit/oak/spi/GuavaDeprecation.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/oak-core-spi/src/main/java/org/apache/jackrabbit/oak/spi/GuavaDeprecation.java b/oak-core-spi/src/main/java/org/apache/jackrabbit/oak/spi/GuavaDeprecation.java
index 182ca6d9f1..185101d18a 100644
--- a/oak-core-spi/src/main/java/org/apache/jackrabbit/oak/spi/GuavaDeprecation.java
+++ b/oak-core-spi/src/main/java/org/apache/jackrabbit/oak/spi/GuavaDeprecation.java
@@ -27,7 +27,7 @@ public class GuavaDeprecation {
 
     private static final Logger LOG = LoggerFactory.getLogger(GuavaDeprecation.class);
 
-    private static final String DEFAULT = "warn";
+    private static final String DEFAULT = "error";
 
     private static final String TLOGLEVEL = System.getProperty(GuavaDeprecation.class + ".LOGLEVEL", DEFAULT);