Make WebMvcMetrics#tagWithException public

Closes gh-10318
This commit is contained in:
Jon Schneider 2017-09-16 17:51:36 -05:00 committed by Stephane Nicoll
parent 224a4e46d9
commit 71495d1ad9
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ public class WebMvcMetrics {
this.recordAsPercentiles = recordAsPercentiles;
}
void tagWithException(Throwable exception) {
public void tagWithException(Throwable exception) {
RequestAttributes attributes = RequestContextHolder.getRequestAttributes();
attributes.setAttribute(EXCEPTION_ATTRIBUTE, exception,
RequestAttributes.SCOPE_REQUEST);