diff --git a/service-configuration/src/main/java/com/lanyuanxiaoyao/service/configuration/controller/GlobalErrorController.java b/service-configuration/src/main/java/com/lanyuanxiaoyao/service/configuration/controller/GlobalErrorController.java index a4c76f3..8a6db85 100644 --- a/service-configuration/src/main/java/com/lanyuanxiaoyao/service/configuration/controller/GlobalErrorController.java +++ b/service-configuration/src/main/java/com/lanyuanxiaoyao/service/configuration/controller/GlobalErrorController.java @@ -1,5 +1,7 @@ package com.lanyuanxiaoyao.service.configuration.controller; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; @@ -14,10 +16,13 @@ import org.springframework.web.bind.annotation.ResponseStatus; */ @ControllerAdvice public class GlobalErrorController { + private static final Logger logger = LoggerFactory.getLogger(GlobalErrorController.class); + @ResponseBody @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR) @ExceptionHandler(Throwable.class) public String errorHandler(Throwable throwable) { + logger.error("Error", throwable); return throwable.getMessage(); } }