做上线Thinkphp项目后,随着时间的运营,在网站data/rumtime/log日志文件会越来越多,按天形成日志。这样导致网站大几G,上10G都有可能。
有没有关闭这个日志记录的方法呢,答案是有的
1、打开 application/config.php 配置文件
2、在 config.php 配置文件中找到 app_debug 配置项 改为 false
'app_debug' => true, 改为 'app_debug' => false,
3、找到'log' 配置项:配置项 type' => 'File' 修改为 type' => 'test '
把runtime下log目录删除,再打开网站浏览,log
目录就不会出现了