application.properties中配置:
#控制台打印sql语句 红色部分是mapper路径
logging.level.com.abc.mapper=debug
#日志输出到一下目录,文件名默认为spring.log
#logging.path=E:/workspace_uapStu/gwxm/log
可能有些小伙伴会同时配置 logging.path 和 logging.file,但是又发现其中一个不生效。
官方文档中:
If you want to write log files in addition to the console output you
need to set a logging.file or logging.path property
也就是说,它们不会同时生效,只配置其中一个就好了。
例如我配置的时候只指定path
logging.path = ./logs
那么记录日志的时候默认的文件名是:spring.log
日志输出到文件 :https://blog.csdn.net/testcs_dn/article/details/86309819