ParameterInterceptor log parameter value twice for the first parameter when there's more than one parameter of the same name.
Such that if we have url like
http://host:port/context?name=John&name=Bill&age=stillYoung
the following gets logged
[DEBUG] - ParametersInterceptor.before(103) | Setting params name => [ JohnJohn, Bill ] age => [ stillYoung ]
It should just be
[DEBUG] - ParametersInterceptor.before(103) | Setting params name => [ John, Bill ] age => [ stillYoung ]
eg.
the following gets logged
[DEBUG] - ParametersInterceptor.before(103) | Setting params name => [ JohnJohn, JackJack, Bill ] age => [ stillYoung ]
It should just be
[DEBUG] - ParametersInterceptor.before(103) | Setting params name => [ John, Jack, Bill ] age => [ stillYoung ]