getTrace()[$traceLine]; $context = [$code ?? $e->getCode(), $trace['file'], $trace['line'], $e->getTrace()[++$traceLine]['function']]; } else { $context = [$code ?? $e->getCode(), $e->getFile(), $e->getLine(), $e->getTrace()[0]['function']]; } Log::channel('app')->{$severity->name}($e->getMessage(), $context); } /** * @param Exception|string $e * @param Style $cmd * * @return void * @throws ReflectionException */ function appConsole(Exception|string $e, Style $cmd): void { if (! is_string($e)) { $e = $e->getMessage(); } // $reflection = new ReflectionClass($e); // if (! $reflection->isSubclassOf(Exception::class)) { // $e = $e->getMessage(); // } if (App::runningInConsole()) { $io = new SymfonyStyle(new ArgvInput(), new ConsoleOutput()); $io->{$cmd->name}($e); } } /** * @param Exception|string $e * * @return void * @throws ReflectionException */ function appWarning(Exception|string $e): void { appLog($e, LogType::warning); appConsole($e, Style::warning); } /** * @param mixed $e * * @return void * @throws ReflectionException */ function appSuccess(Exception|string $e): void { appLog($e, LogType::info); appConsole($e, Style::success); } /** * @param mixed $e * * @return void * @throws ReflectionException */ function appInfo(Exception|string $e): void { appLog($e, LogType::info); appConsole($e, Style::note); } /** * @param mixed $e * * @return void * @throws ReflectionException */ function appNotice(Exception|string $e): void { appLog($e, LogType::notice); appConsole($e, Style::note); }