log = app()->make(Log::class, ['extensionID' => 'system'], true); } #[Test] public function debug() { $this->log->debug('test1'); \think\facade\Log::debug('test2'); } #[Test] public function feishu() { $this->log->error('test1'); $this->log->error('test2'); } }