admin/app/framework/Log/CronLog.php

18 lines
317 B
PHP

<?php
/**
* Created by PhpStorm.
* User: shenyang
* Date: 2018/11/20
* Time: 2:57 PM
*/
namespace app\framework\Log;
class CronLog extends BaseLog
{
protected $logDir = 'logs/cron/cron.log';
public function add($message, array $content = [])
{
$this->log->debug($message, $content);
}
}