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

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
     new 414d3f733e WICKET-6985 Insufficient information logged by 
CheckingObjectOutputStream when delegation to Externalizable
414d3f733e is described below

commit 414d3f733e1d07a7f37f88d262b4a828612ab7ec
Author: Martin Tzvetanov Grigorov <[email protected]>
AuthorDate: Fri May 27 14:51:22 2022 +0300

    WICKET-6985 Insufficient information logged by CheckingObjectOutputStream 
when delegation to Externalizable
    
    Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
---
 .../wicket/core/util/objects/checker/CheckingObjectOutputStream.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/wicket-core/src/main/java/org/apache/wicket/core/util/objects/checker/CheckingObjectOutputStream.java
 
b/wicket-core/src/main/java/org/apache/wicket/core/util/objects/checker/CheckingObjectOutputStream.java
index c0f8b7cf82..f34de257af 100644
--- 
a/wicket-core/src/main/java/org/apache/wicket/core/util/objects/checker/CheckingObjectOutputStream.java
+++ 
b/wicket-core/src/main/java/org/apache/wicket/core/util/objects/checker/CheckingObjectOutputStream.java
@@ -449,7 +449,7 @@ public class CheckingObjectOutputStream extends 
ObjectOutputStream
                                {
                                        throw (ObjectCheckException)e;
                                }
-                               log.warn("Error delegating to Externalizable : 
{}, path: {}", e.getMessage(), currentPath());
+                               log.warn("Error delegating to Externalizable. 
Path: {}", currentPath(), e);
                        }
                }
                else

Reply via email to