log->targets['file']->enabled = $enableFile; Yii::$app->log->targets['db']->enabled = $enableDB; Yii::$app->log->targets['email']->enabled = $enableEmail; } /** * 系统严重错误日志记录, 写入数据库之后, 可以按分类管理 * @param $message * @param string $category 指定应用分类, 如: app_api/app_dd/app_ht/app_pay/app_user/app_wx/console * 调用示例: * SystemLogHelper::error('工程师自动提现转账失败, 微信商户号余额不足', SystemLogHelper::CAT_CONSOLE); */ public static function error($message, $category = 'application') { Yii::error($message, $category); } }