Laravel 记录日志

日志配置文件所在位置: config/logging.php

Log::emergency($message);  // 系统不可用信息
Log::alert($message);  // 警报提醒、必须立刻处理
Log::critical($message);  // 严重错误
Log::error($message);  // 运行时错误
Log::warning($message);  // 警告、异常
Log::notice($message);  // 提醒、重要的信息
Log::info($message);  // 普通信息
Log::debug($message);  // 调试信息

Log::info('User failed to login.', ['id' => $user->id]);

你可能感兴趣的:(phplavarel)