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 14:57:19 UTC

[jackrabbit-oak] branch trunk updated: OAK-10084: oak-commons: 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 90034e9d5a OAK-10084: oak-commons: bump up logging for deprecated Guava based APIs to ERROR
90034e9d5a is described below

commit 90034e9d5a7504b1b333ac1bc3c2a1422f86d028
Author: Julian Reschke <ju...@gmx.de>
AuthorDate: Wed Jan 25 15:57:10 2023 +0100

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

diff --git a/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/GuavaDeprecation.java b/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/GuavaDeprecation.java
index 5ffa003106..39c8ccfcfb 100644
--- a/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/GuavaDeprecation.java
+++ b/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/GuavaDeprecation.java
@@ -26,7 +26,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);