Removing duplicate log output

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
Joakim Erdfelt 2019-11-18 16:44:48 -06:00
parent 8a30543845
commit 61cbb7529d
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
1 changed files with 0 additions and 1 deletions

View File

@ -100,7 +100,6 @@ public class ManagedAttributeListener implements ServletContextListener, Servlet
protected void updateBean(String name, Object oldBean, Object newBean)
{
LOG.info("update {} {}->{} on {}", name, oldBean, newBean, _context);
if (LOG.isDebugEnabled())
LOG.debug("update {} {}->{} on {}", name, oldBean, newBean, _context);
_context.updateBean(oldBean, newBean, false);