File tree 1 file changed +2
-3
lines changed
spring-web/src/main/java/org/springframework/web/util 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -220,15 +220,15 @@ else if (isTabOrNL) {
220
220
}
221
221
222
222
private void setState (State newState ) {
223
- if (logger .isDebugEnabled ()) {
223
+ if (logger .isTraceEnabled ()) {
224
224
String c ;
225
225
if (this .pointer < this .input .length ()) {
226
226
c = Character .toString (this .input .charAt (this .pointer ));
227
227
}
228
228
else {
229
229
c = "EOF" ;
230
230
}
231
- logger .debug ("Changing state from " + this .state + " to " + newState + " (cur: " + c + " prev: " + this .previousState + ")" );
231
+ logger .trace ("Changing state from " + this .state + " to " + newState + " (cur: " + c + " prev: " + this .previousState + ")" );
232
232
}
233
233
// EXTRA: we keep the previous state, to ensure that the parser can escape from malformed URI templates
234
234
this .previousState = this .state ;
@@ -2847,7 +2847,6 @@ public PathSegments(List<PathSegment> segments) {
2847
2847
2848
2848
@ Override
2849
2849
public void append (String segment ) {
2850
- logger .debug ("Adding \" " + segment + "\" " );
2851
2850
this .segments .add (new PathSegment (segment ));
2852
2851
}
2853
2852
You can’t perform that action at this time.
0 commit comments