日志服务使用:
$app=app();$log=$app->make('log');$log->info('post_index',['data'=>'this is post index']);//日志:
日志服务使用:
\Log::info('post_index',['data'=>'this is post index']);//日志:
生成的日志:
storage/logs/laravel.log文件中
本文共 269 字,大约阅读时间需要 1 分钟。
日志服务使用:
$app=app();$log=$app->make('log');$log->info('post_index',['data'=>'this is post index']);//日志:
日志服务使用:
\Log::info('post_index',['data'=>'this is post index']);//日志:
生成的日志:
storage/logs/laravel.log文件中
转载于:https://www.cnblogs.com/yiweiyihang/p/8628224.html