aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2022-05-24 08:39:55 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2022-11-02 09:49:37 +0100
commit4c8ec6dc8992e13ba4dbb831ac865a41377ec86f (patch)
treec990b5389fe803906d2854b2135c6d5c69b3b1ad /lib
parent052dcdebe8e2c287933caaac379f56423b1ab660 (diff)
downloadnextcloud-server-4c8ec6dc8992e13ba4dbb831ac865a41377ec86f.tar.gz
nextcloud-server-4c8ec6dc8992e13ba4dbb831ac865a41377ec86f.zip
Log all deprecations with debug level
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Log/ErrorHandler.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/Log/ErrorHandler.php b/lib/private/Log/ErrorHandler.php
index 5f90c86c24e..c4b9631e75a 100644
--- a/lib/private/Log/ErrorHandler.php
+++ b/lib/private/Log/ErrorHandler.php
@@ -98,6 +98,7 @@ class ErrorHandler {
case E_USER_WARNING:
return ILogger::WARN;
+ case E_DEPRECATED:
case E_USER_DEPRECATED:
return ILogger::DEBUG;