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:14:48 UTC

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

commit b6c6d1ffa5e7a6827a6bec621fedac52149cf196
Author: Julian Reschke <ju...@gmx.de>
AuthorDate: Wed Jan 25 16:14:39 2023 +0100

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

diff --git a/oak-core/src/main/java/org/apache/jackrabbit/oak/core/GuavaDeprecation.java b/oak-core/src/main/java/org/apache/jackrabbit/oak/core/GuavaDeprecation.java
index e7dcc2f21b..101d1d689e 100644
--- a/oak-core/src/main/java/org/apache/jackrabbit/oak/core/GuavaDeprecation.java
+++ b/oak-core/src/main/java/org/apache/jackrabbit/oak/core/GuavaDeprecation.java
@@ -25,7 +25,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);