info($message, $context); } protected function logWarning(string $message, array $context = []): void { Log::channel('plugins')->warning($message, $context); } protected function logError(string $message, array $context = []): void { Log::channel('plugins')->error($message, $context); } protected function logDebug(string $message, array $context = []): void { Log::channel('plugins')->debug($message, $context); } }