From 5b020eb570efb91cc345973b277ac0affec86871 Mon Sep 17 00:00:00 2001 From: Lukasz Lenart Date: Mon, 8 Jan 2024 07:11:35 +0100 Subject: [PATCH] Reduces log level to debug to reduce noise in the logs --- .../com/opensymphony/xwork2/ognl/OgnlValueStackFactory.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/com/opensymphony/xwork2/ognl/OgnlValueStackFactory.java b/core/src/main/java/com/opensymphony/xwork2/ognl/OgnlValueStackFactory.java index f72ad4be8a..2910d40a69 100644 --- a/core/src/main/java/com/opensymphony/xwork2/ognl/OgnlValueStackFactory.java +++ b/core/src/main/java/com/opensymphony/xwork2/ognl/OgnlValueStackFactory.java @@ -132,7 +132,7 @@ protected void registerAdditionalMethodAccessors() { } MethodAccessor methodAccessor = container.getInstance(MethodAccessor.class, name); OgnlRuntime.setMethodAccessor(cls, methodAccessor); - LOG.info("Registered custom OGNL MethodAccessor [{}] for class [{}]", methodAccessor.getClass().getName(), cls.getName()); + LOG.debug("Registered custom OGNL MethodAccessor [{}] for class [{}]", methodAccessor.getClass().getName(), cls.getName()); } } @@ -142,7 +142,7 @@ protected void registerNullHandlers() throws ClassNotFoundException { Class cls = Class.forName(name); NullHandler nullHandler = container.getInstance(NullHandler.class, name); OgnlRuntime.setNullHandler(cls, new OgnlNullHandlerWrapper(nullHandler)); - LOG.info("Registered custom OGNL NullHandler [{}] for class [{}]", nullHandler.getClass().getName(), cls.getName()); + LOG.debug("Registered custom OGNL NullHandler [{}] for class [{}]", nullHandler.getClass().getName(), cls.getName()); } } @@ -156,7 +156,7 @@ protected void registerPropertyAccessors() throws ClassNotFoundException { } PropertyAccessor propertyAccessor = container.getInstance(PropertyAccessor.class, name); OgnlRuntime.setPropertyAccessor(cls, propertyAccessor); - LOG.info("Registered custom OGNL PropertyAccessor [{}] for class [{}]", propertyAccessor.getClass().getName(), cls.getName()); + LOG.debug("Registered custom OGNL PropertyAccessor [{}] for class [{}]", propertyAccessor.getClass().getName(), cls.getName()); } }