log

log怎么使用

use Illuminate\Log\Writer;
已邀请:

JasonLaravel

赞同来自:

http://laravel.com/docs/5.1/errors
官方文档。。。。。
Log::info('Showing user profile for user: '.$id);

Log::debug($error);
Log::info($error);
Log::notice($error);
Log::warning($error);
Log::error($error);
Log::critical($error);
Log::alert($error);

要回复问题请先登录注册