在网上寻找了许多方法,觉得有的地方看不懂, 决定自己写一些关于laravel中调用本身中的操作日志;
Laravel 日志工具在强大的
Monolog 函数库上提供一层简单的功能。Laravel 默认为应用程序建立每天的日志文件在 storage/logs
目录。你可以像这样把信息写到日志:
首先 , 在控制器层 写如 : use Log;
在你的每个方法中写入:
Log::info('This is some useful information.');
Log::warning('Something could be going wrong.');
Log::error('Something is really going wrong.');
三个方法随意调用.
然后去运行你的网页。
之后回到目录 /storage/logs/laravel.log中看一看是否已经存到日志中。如果存到的话。
接下来就是使用 file_get_contents() 可以从文件中读取了;