Redis max log size #36

Merged
aldarien merged 2 commits from feature/redis-log-max-entries into develop 2025-09-15 14:26:21 -03:00
Showing only changes of commit 1a94759f9d - Show all commits

View File

@ -61,7 +61,7 @@ class ArrayBuilder
$params = [
$this->container->get(Predis\ClientInterface::class),
"logs:{$handlerData['name']}",
'capSize' => 100
'capSize' => $handlerData['capSize'] ?? 100
];
} catch (NotFoundExceptionInterface | ContainerExceptionInterface $exception) {
$this->log($exception, ['handlerData' => $handlerData]);