ErrorLog.php 320 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: shenyang
  5. * Date: 2018/11/20
  6. * Time: 2:57 PM
  7. */
  8. namespace app\framework\Log;
  9. class ErrorLog extends BaseLog
  10. {
  11. protected $logDir = 'logs/error/error.log';
  12. public function add($message, array $content = [])
  13. {
  14. $this->log->error($message, $content);
  15. }
  16. }