From bf5c79370e86b326de4bf46b8af78ec8f2804ee9 Mon Sep 17 00:00:00 2001 From: bidi Date: Thu, 11 Apr 2024 15:05:02 +0300 Subject: [PATCH] updated readme --- README.md | 2 +- docs/book/v3/adding-config-provider.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3ce5269..81292e6 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ DotKernel log component extending and customizing [![GitHub stars](https://img.shields.io/github/stars/dotkernel/dot-log)](https://github.com/dotkernel/dot-log/stargazers) [![GitHub license](https://img.shields.io/github/license/dotkernel/dot-log)](https://github.com/dotkernel/dot-log/blob/3.0/LICENSE.md) -[![Build Static](https://github.com/dotkernel/dot-log/actions/workflows/static-analysis.yml/badge.svg?branch=3.0)](https://github.com/dotkernel/dot-log/actions/workflows/static-analysis.yml) +[![Build Static](https://github.com/dotkernel/dot-log/actions/workflows/continuous-integration.yml/badge.svg?branch=3.0)](https://github.com/dotkernel/dot-log/actions/workflows/continuous-integration.yml) [![codecov](https://codecov.io/gh/dotkernel/dot-log/graph/badge.svg?token=JX19KTBRCZ)](https://codecov.io/gh/dotkernel/dot-log) [![SymfonyInsight](https://insight.symfony.com/projects/287e81e8-b4fb-4452-bd8f-4f12c0ab1f76/big.svg)](https://insight.symfony.com/projects/287e81e8-b4fb-4452-bd8f-4f12c0ab1f76) diff --git a/docs/book/v3/adding-config-provider.md b/docs/book/v3/adding-config-provider.md index b3150eb..f4e44bd 100644 --- a/docs/book/v3/adding-config-provider.md +++ b/docs/book/v3/adding-config-provider.md @@ -5,6 +5,6 @@ `\Dot\Log\ConfigProvider::class` * Make sure it is added before with the Application-Specific components, eg.: \Frontend\App\ConfigProvider.php, `\Admin\App\ConfigProvider::class`, `MyProject\ConfigProvider::class` , etc. * Open the `Dot\Log\ConfigProvider` -* In the dependencies section you will see an absctract factory (LoggerAbstractServiceFactory::class) +* In the dependencies section you will see an abstract factory (LoggerAbstractServiceFactory::class) * This class responds to "selectors" instead of class names Instead of requesting the `Laminas\Log\Logger::class`from the container, dot-log.my_logger should be requested (or just `my_logger` if using laminas-log)