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/04/07 16:53:33 UTC

[jackrabbit-oak] branch 1.22 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 1.22
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git


The following commit(s) were added to refs/heads/1.22 by this push:
     new 47f901053a OAK-10086: oak-core: bump up logging for deprecated Guava based APIs to ERROR
47f901053a is described below

commit 47f901053a34bfa100ac8d13e54fd9a028d258f1
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 2a4f6cd544..884f37d2bb 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);