https://github.com/nutzam/nutzmore/tree/5680f21c1d7fb69a0b06426662be6907c7214da1/nutz-plugins-slog 的可用变量部分,具体是怎么使用的呢?尝试了几次不得要领。
可用变量
args 方法参数
re 方法返回值,仅 after时可用
e 异常对象,仅error时可用
req 请求对象,仅mvc请求作用域内可用
resp 响应对象,仅mvc请求作用域内可用
方法参数 依赖ecj或jdk8的-paramters编译选项.
使用场景
public Object login(HttpServletRequest request, HttpServletResponse response, @Param("username") String username,
@Param("password") String password, @Param("rememberMe") boolean rememberMe, @Param("captcha") String captcha) {
return rtn.setv("ok", true).setv("msg", "OK");
}
日志想记录username和msg