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

joerghoh 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 e354eed2c2 OAK-10445 downgrade INFO log message to DEBUG (#1124)
e354eed2c2 is described below

commit e354eed2c2f1b6242010801e8a2cb05a31885629
Author: Jörg Hoh <[email protected]>
AuthorDate: Sun Sep 17 13:35:53 2023 +0200

    OAK-10445 downgrade INFO log message to DEBUG (#1124)
---
 .../jackrabbit/oak/plugins/blob/AbstractSharedCachingDataStore.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/oak-blob-plugins/src/main/java/org/apache/jackrabbit/oak/plugins/blob/AbstractSharedCachingDataStore.java
 
b/oak-blob-plugins/src/main/java/org/apache/jackrabbit/oak/plugins/blob/AbstractSharedCachingDataStore.java
index fb058fffc3..6f81f95064 100644
--- 
a/oak-blob-plugins/src/main/java/org/apache/jackrabbit/oak/plugins/blob/AbstractSharedCachingDataStore.java
+++ 
b/oak-blob-plugins/src/main/java/org/apache/jackrabbit/oak/plugins/blob/AbstractSharedCachingDataStore.java
@@ -251,7 +251,7 @@ public abstract class AbstractSharedCachingDataStore 
extends AbstractDataStore
             if (blobOptions.getUpload() == SYNCHRONOUS
                 || !cache.stage(identifier.toString(), tmpFile)) {
                 backend.write(identifier, tmpFile);
-                LOG.info("Added blob [{}] to backend", identifier);
+                LOG.debug("Added blob [{}] to backend", identifier);
                 // offer to download cache
                 cache.getDownloadCache().put(identifier.toString(), tmpFile);
 

Reply via email to