|
|
@@ -178,3 +178,17 @@ docker update --cpus=1 --memory=1g math_cms_pdf
|
|
|
## 联系方式
|
|
|
|
|
|
如有问题请联系开发团队。
|
|
|
+
|
|
|
+### 常用日志查看
|
|
|
+
|
|
|
+```
|
|
|
+docker exec math_cms_app grep -A 10 "exam-answer-analysis\|ERROR" storage/logs/laravel.log | tail -50
|
|
|
+
|
|
|
+tail -200 storage/logs/laravel.log
|
|
|
+
|
|
|
+ # 实时监控(自动刷新)
|
|
|
+ docker exec math_cms_app tail -f storage/logs/laravel.log
|
|
|
+
|
|
|
+ # 组合:先显示最近 200 行,然后实时监控
|
|
|
+ docker exec math_cms_app tail -200f storage/logs/laravel.log
|
|
|
+```
|