-
Bug
-
Resolution: Done
-
Minor
-
0.9.3.Final
-
None
I found the following logging issues:
- toString() invocation
logger.trace("in ANON: value from data object: *** {} ***", data.toString());
- string concatenation
logger.trace("text value is: " + text);
- hard work in logging without level check
if (logger.isInfoEnabled()) { // hard work }