For debug and trace levels, either added isEnabled check or made arguments parameterized. (#1028)

This commit is contained in:
Koen De Groote
2017-05-21 21:50:13 +12:00
committed by Rob Bygrave
parent d0c1ae76f4
commit 9e2923f571
15 changed files with 27 additions and 18 deletions
@@ -32,7 +32,7 @@ public class PostLoadManager {
for (BeanPostLoad c : list) {
if (c.isRegisterFor(deployDesc.getBeanType())) {
logger.debug("BeanPostLoad on[" + deployDesc.getFullName() + "] " + c.getClass().getName());
logger.debug("BeanPostLoad on[{}] {}", deployDesc.getFullName(), c.getClass().getName());
deployDesc.addPostLoad(c);
}
}