FrontendErrorLog.php 325 B

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