[infinispan-issues] [JBoss JIRA] Created: (ISPN-487) Log byte arrays partially in Hot Rod client
Galder Zamarreno (JIRA)
jira-events at lists.jboss.org
Wed Jun 9 03:26:38 EDT 2010
Log byte arrays partially in Hot Rod client
-------------------------------------------
Key: ISPN-487
URL: https://jira.jboss.org/browse/ISPN-487
Project: Infinispan
Issue Type: Task
Components: Cache Server
Reporter: Galder Zamarreno
Assignee: Mircea Markus
Fix For: 4.1.0.CR1
In SerializationMarshaller I see this:
if (log.isTraceEnabled()) {
log.trace("Unmarshalled bytes: " + Arrays.toString(bytes) + " and returning object: " + o);
}
Using Arrays.toString() is Ok for most cases but if the serialized version is too big, it'd be hard to read trace logs.
Instead, you should prob use a similar method to the one used by the HotRod/Memcached or when lazy deserialization is used where I call o.i.u.Util.printArray. This methods prints the byte array partially, only the first 10 bytes I believe, and if -Dinfinispan.arrays.debug=true is passed, it then prints the full array.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the infinispan-issues
mailing list