mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
For debug and trace levels, either added isEnabled check or made arguments parameterized. (#1028)
This commit is contained in:
committed by
Rob Bygrave
parent
d0c1ae76f4
commit
9e2923f571
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user