Skip when error in parsing log file

This commit is contained in:
2023-02-14 23:18:30 -03:00
parent e59e91805b
commit 110f37e4f4
3 changed files with 32 additions and 4 deletions

View File

@ -4,6 +4,7 @@ use Psr\Container\ContainerInterface;
return [
ProVM\Common\Service\Logs::class => function(ContainerInterface $container) {
return new ProVM\Common\Service\Logs(
$container->get(Psr\Log\LoggerInterface::class),
$container->get('logs_folder')
);
}