@@ -132,7 +132,7 @@ protected void registerAdditionalMethodAccessors() {
132132 }
133133 MethodAccessor methodAccessor = container .getInstance (MethodAccessor .class , name );
134134 OgnlRuntime .setMethodAccessor (cls , methodAccessor );
135- LOG .info ("Registered custom OGNL MethodAccessor [{}] for class [{}]" , methodAccessor .getClass ().getName (), cls .getName ());
135+ LOG .debug ("Registered custom OGNL MethodAccessor [{}] for class [{}]" , methodAccessor .getClass ().getName (), cls .getName ());
136136 }
137137 }
138138
@@ -142,7 +142,7 @@ protected void registerNullHandlers() throws ClassNotFoundException {
142142 Class <?> cls = Class .forName (name );
143143 NullHandler nullHandler = container .getInstance (NullHandler .class , name );
144144 OgnlRuntime .setNullHandler (cls , new OgnlNullHandlerWrapper (nullHandler ));
145- LOG .info ("Registered custom OGNL NullHandler [{}] for class [{}]" , nullHandler .getClass ().getName (), cls .getName ());
145+ LOG .debug ("Registered custom OGNL NullHandler [{}] for class [{}]" , nullHandler .getClass ().getName (), cls .getName ());
146146 }
147147 }
148148
@@ -156,7 +156,7 @@ protected void registerPropertyAccessors() throws ClassNotFoundException {
156156 }
157157 PropertyAccessor propertyAccessor = container .getInstance (PropertyAccessor .class , name );
158158 OgnlRuntime .setPropertyAccessor (cls , propertyAccessor );
159- LOG .info ("Registered custom OGNL PropertyAccessor [{}] for class [{}]" , propertyAccessor .getClass ().getName (), cls .getName ());
159+ LOG .debug ("Registered custom OGNL PropertyAccessor [{}] for class [{}]" , propertyAccessor .getClass ().getName (), cls .getName ());
160160 }
161161 }
162162
0 commit comments