Skip to content

Commit e9154b9

Browse files
committed
Merge branch 'master' into WW-5352-parameter-annotation-3
2 parents 4c5f2b0 + f5a7c31 commit e9154b9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

core/src/main/java/com/opensymphony/xwork2/ognl/OgnlValueStackFactory.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@
389389
<groupId>org.apache.maven.plugins</groupId>
390390
<artifactId>maven-release-plugin</artifactId>
391391
<!-- See https://issues.apache.org/jira/browse/MRELEASE-1029 -->
392-
<version>3.0.0-M1</version>
392+
<version>3.0.1</version>
393393
</plugin>
394394
<plugin>
395395
<artifactId>maven-jar-plugin</artifactId>

0 commit comments

Comments
 (0)