From 3b32e4196a78f14fdec063dce76d98a6a471acb0 Mon Sep 17 00:00:00 2001 From: Abdellah Ramadan Date: Sun, 14 Nov 2021 22:52:51 +0100 Subject: [PATCH] Update LoggerInterface hyperlink to GitHub page On this line 'The logger service has different methods for different logging levels/priorities. See LoggerInterface for a list of all of the methods on the logger.' the LoggerInterface link leads to a 404 GitHub page. This PR is to update it to the correct link. --- logging.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logging.rst b/logging.rst index ae9ddd10a73..1b425283d83 100644 --- a/logging.rst +++ b/logging.rst @@ -41,7 +41,7 @@ To log a message, inject the default logger in your controller or service:: } The ``logger`` service has different methods for different logging levels/priorities. -See `LoggerInterface`_ for a list of all of the methods on the logger. +See .. _`LoggerInterface`: https://github.com/php-fig/log/blob/master/src/LoggerInterface.php for a list of all of the methods on the logger. Monolog -------