You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to determine why I was getting this, I set the traversalDebugMessage to true (using the log levels and the system property) and I can see in a debugger that it's being appended to as it's being walked.
This code should be wrapped in a finally clause to log the traversalDebugMessage. Without those logs it's difficult to debug errors like the one given above.
Thank you!
The text was updated successfully, but these errors were encountered:
(on version 0.2.0, using ehcache version 3.0.2)
I was getting the following WARN-level logs when attempting to cache a certain object:
Max Object Graph Size reached for the object
thrown from here.
In order to determine why I was getting this, I set the
traversalDebugMessage
totrue
(using the log levels and the system property) and I can see in a debugger that it's being appended to as it's being walked.The issue is, if anything in the
walk
method throws aRuntimeException
, the code that ultimately provides the message to the logger is never called.This code should be wrapped in a
finally
clause to log thetraversalDebugMessage
. Without those logs it's difficult to debug errors like the one given above.Thank you!
The text was updated successfully, but these errors were encountered: