@@ -39,7 +39,7 @@ public class SecurityProperty {
log.info("Security loadProperties size is {}", PROPS.size());
}
} catch (Exception e) {
- log.error(e.getMessage());
+ log.error(e.getMessage(), e);
throw new RuntimeException(e);
} finally {
try {
@@ -88,7 +88,7 @@ public class ControllerAspect {
return joinPoint.proceed();
} catch (Throwable e) {
- LOG.error(e.getMessage());
+ LOG.error(e.getMessage(), e);