161 mapping.get().method(), |
161 mapping.get().method(), |
162 mapping.get().requestPath() |
162 mapping.get().requestPath() |
163 ); |
163 ); |
164 } |
164 } |
165 |
165 |
166 LOG.info("{} {} maps to {}", |
166 LOG.debug("{} {} maps to {}::{}", |
167 mapping.get().method(), |
167 mapping.get().method(), |
168 requestPath, |
168 requestPath, |
|
169 getClass().getSimpleName(), |
169 method.getName() |
170 method.getName() |
170 ); |
171 ); |
171 } else { |
172 } else { |
172 LOG.warn("{} is annotated with {} but has the wrong parameters - (HttpServletRequest,HttpServletResponse) required", |
173 LOG.warn("{} is annotated with {} but has the wrong parameters - (HttpServletRequest,HttpServletResponse) required", |
173 method.getName(), RequestMapping.class.getSimpleName() |
174 method.getName(), RequestMapping.class.getSimpleName() |