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/05/22 12:04:51 UTC

[jackrabbit-oak] branch 1.22 updated: OAK-10106: Guava deprecations: set minimal logging level to 'warn'

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 1e7f10444a OAK-10106: Guava deprecations: set minimal logging level to 'warn'
1e7f10444a is described below

commit 1e7f10444a0b6492a2b31afc31326da608e89751
Author: Julian Reschke <re...@apache.org>
AuthorDate: Thu Mar 23 09:52:53 2023 +0100

    OAK-10106: Guava deprecations: set minimal logging level to 'warn'
---
 .../main/java/org/apache/jackrabbit/oak/commons/GuavaDeprecation.java    | 1 -
 .../src/main/java/org/apache/jackrabbit/oak/spi/GuavaDeprecation.java    | 1 -
 .../src/main/java/org/apache/jackrabbit/oak/core/GuavaDeprecation.java   | 1 -
 3 files changed, 3 deletions(-)

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 1cb2be1109..dd648980d9 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
@@ -38,7 +38,6 @@ public class GuavaDeprecation {
         switch (TLOGLEVEL.toLowerCase(Locale.ENGLISH)) {
             case "error":
             case "warn":
-            case "info":
                 t = TLOGLEVEL.toLowerCase(Locale.ENGLISH);
                 break;
             default:
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 7b99ab3c11..b97d07c45c 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
@@ -39,7 +39,6 @@ public class GuavaDeprecation {
         switch (TLOGLEVEL.toLowerCase(Locale.ENGLISH)) {
             case "error":
             case "warn":
-            case "info":
                 t = TLOGLEVEL.toLowerCase(Locale.ENGLISH);
                 break;
             default:
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 884f37d2bb..9fe75c07f0 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
@@ -37,7 +37,6 @@ public class GuavaDeprecation {
         switch (TLOGLEVEL.toLowerCase(Locale.ENGLISH)) {
             case "error":
             case "warn":
-            case "info":
                 t = TLOGLEVEL.toLowerCase(Locale.ENGLISH);
                 break;
             default: