我是Laravel的新手,现在我必须创建一个自定义访问日志来跟踪用户活动及其信息,如IP名称和用户执行的操作。如果有人知道,请提前帮助我。
答案 0 :(得分:0)
在laravel中,您可以在app.php
路径中找到一个配置文件config/app.php
,打开该文件并为日志找到此配置。
/*
|--------------------------------------------------------------------------
| Logging Configuration
|--------------------------------------------------------------------------
|
| Here you may configure the log settings for your application. Out of
| the box, Laravel uses the Monolog PHP logging library. This gives
| you a variety of powerful log handlers / formatters to utilize.
|
| Available Settings: "single", "daily", "syslog", "errorlog"
|
*/
'log' => env('APP_LOG', 'single'),
'log_level' => env('APP_LOG_LEVEL', 'debug'),
在laravel中,有四个默认的日志记录设置。
根据您的情况,您可以将此单更改为每天
您也可以将其添加到您的 .env 文件
APP_LOG=daily
有关更多信息,Check Here