This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch wicket-8.x
in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/wicket-8.x by this push:
new 5108b6f154 WICKET-6985 Insufficient information logged by
CheckingObjectOutputStream when delegation to Externalizable
5108b6f154 is described below
commit 5108b6f154ab450ea00cb2924d316e87434f66da
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]>
(cherry picked from commit 414d3f733e1d07a7f37f88d262b4a828612ab7ec)
---
.../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