ThinkPHP的日志默认存储在应用根目录下的runtime/log/子目录中(如/var/www/your_project/runtime/log/)。日志文件通常按日期分割,命名格式为YYYY-mm-dd.log(如2025-11-08.log),可通过以下方式确认:
config/log.php)中的path参数(默认为空则表示使用runtime/log/);channels.db.table指定数据库表名)。tail命令查看实时日志Linux环境下,tail命令是查看日志的常用工具,-f参数可实现实时监控(显示日志文件的最新内容并持续刷新):
# 查看runtime/log目录下所有日志文件的实时内容
tail -f /path/to/your_project/runtime/log/*.log
# 查看特定日期的日志(如2025-11-08)
tail -f /path/to/your_project/runtime/log/2025-11-08.log
执行后,终端会实时输出日志内容,按Ctrl+C可退出监控。
cat/less查看历史日志cat命令:一次性输出整个日志文件内容(适合查看小文件):cat /path/to/your_project/runtime/log/2025-11-08.log
less命令:分页查看日志(适合查看大文件,支持上下翻页、搜索):less /path/to/your_project/runtime/log/2025-11-08.log
# 搜索关键词(如“error”):按“/”输入关键词,按“n”跳转下一个匹配项
查看完成后按q退出。ThinkPHP日志支持多级别(debug→info→notice→warning→error→critical→alert→emergency),可通过grep命令过滤所需级别(如仅查看error级别日志):
# 查看实时error日志
tail -f /path/to/your_project/runtime/log/*.log | grep "error"
# 查看历史error日志
grep "error" /path/to/your_project/runtime/log/2025-11-08.log
此方法可快速定位错误信息,减少无关内容干扰。
runtime/log/目录有读取权限(可通过chmod -R 755 runtime/log/修改权限);max_files参数限制保留数量(如config/log.php中设置'max_files' => 30,保留最近30天的日志);通过以上方法,可快速在Linux环境下查看ThinkPHP的日志信息,帮助定位和解决应用问题。