diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2023-04-26 11:58:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-26 11:58:40 +0200 |
commit | ea67129b64eaf56f185dda0a1b6a57887021f686 (patch) | |
tree | 13c623b0916566ebafe65252ad81a46e83274453 | |
parent | 5d29a96b1cbc4f125e80e8985f52f8ded111313f (diff) | |
parent | b9850fb926db686353b82458180c8697e19fb7e4 (diff) | |
download | nextcloud-server-ea67129b64eaf56f185dda0a1b6a57887021f686.tar.gz nextcloud-server-ea67129b64eaf56f185dda0a1b6a57887021f686.zip |
Merge pull request #37480 from nextcloud/fix/ocp/ilogfactor-getcustomlogger-deprecation-version
fix(ocp): Add deprecation version to ILogFactory::getCustomLogger
-rw-r--r-- | lib/public/Log/ILogFactory.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Log/ILogFactory.php b/lib/public/Log/ILogFactory.php index 6bbcf93bca8..e0128d6b11c 100644 --- a/lib/public/Log/ILogFactory.php +++ b/lib/public/Log/ILogFactory.php @@ -44,7 +44,7 @@ interface ILogFactory { * @param string $path * @return ILogger * @since 14.0.0 - * @deprecated use \OCP\Log\ILogFactory::getCustomPsrLogger + * @deprecated 22.0.0 Use \OCP\Log\ILogFactory::getCustomPsrLogger * @see \OCP\Log\ILogFactory::getCustomPsrLogger */ public function getCustomLogger(string $path): ILogger; |