|
@@ -68,7 +68,7 @@ public class RequestSignatureInterceptor implements HandlerInterceptor {
|
|
|
|
|
|
if (ignorePaths.contains(path) && (HttpMethod.POST.matches(request.getMethod()) ||
|
|
|
HttpMethod.PUT.matches(request.getMethod()))) {
|
|
|
- logger.info("url: {} do not intercepted!");
|
|
|
+ logger.info("url: {} do not intercepted!, method={}", path, request.getMethod());
|
|
|
return true;
|
|
|
}
|
|
|
else if(path.endsWith("/heatBeat")){
|
|
@@ -79,7 +79,7 @@ public class RequestSignatureInterceptor implements HandlerInterceptor {
|
|
|
|
|
|
|
|
|
GlobalHeader headers = RequestHeaderManager.parseHeader(request);
|
|
|
- logger.info("request start, path={}, headers={}", path, JSON.toJSONString(headers));
|
|
|
+ logger.info("request start, path={}, method={}, headers={}", path, request.getMethod(), JSON.toJSONString(headers));
|
|
|
|
|
|
String uid = headers.getUid();
|
|
|
String sign = headers.getSign();
|