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/02 12:56:37 UTC

[jackrabbit-oak] branch 1.22 updated: OAK-9420: slightly misleading debug message in JournalEntry

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 2d34015648 OAK-9420: slightly misleading debug message in JournalEntry
2d34015648 is described below

commit 2d34015648d8bb0536395e90731842dc2cecfdb2
Author: Julian Reschke <re...@apache.org>
AuthorDate: Fri May 7 09:16:01 2021 +0000

    OAK-9420: slightly misleading debug message in JournalEntry
    
    git-svn-id: https://svn.apache.org/repos/asf/jackrabbit/oak/trunk@1889606 13f79535-47bb-0310-9956-ffa450edef68
---
 .../java/org/apache/jackrabbit/oak/plugins/document/JournalEntry.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/JournalEntry.java b/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/JournalEntry.java
index 18d0cbd153..7bfa445a07 100644
--- a/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/JournalEntry.java
+++ b/oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/JournalEntry.java
@@ -385,8 +385,8 @@ public final class JournalEntry extends Document {
     void addChangeSet(@Nullable ChangeSet changeSet){
         if (changeSet == null){
             if (LOG.isDebugEnabled()) {
-                LOG.debug("Null changeSet found for caller. ChangeSetBuilder would be set to overflow mode",
-                        new Exception());
+                LOG.debug("Null changeSet found for caller. ChangeSetBuilder will be set to overflow mode",
+                        new Exception("call stack"));
             }
         }
         changeSetBuilder.add(changeSet);