Log all deprecations with debug level

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2022-05-24 08:39:55 +02:00
parent 052dcdebe8
commit 4c8ec6dc89
No known key found for this signature in database
GPG key ID: CC42AC2A7F0E56D8

View file

@ -98,6 +98,7 @@ class ErrorHandler {
case E_USER_WARNING:
return ILogger::WARN;
case E_DEPRECATED:
case E_USER_DEPRECATED:
return ILogger::DEBUG;