Log deprecation only as debug

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2021-04-26 16:19:03 +02:00
parent 8d9e5e0b91
commit 21ed3419f3
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
1 changed files with 2 additions and 0 deletions

View File

@ -106,6 +106,8 @@ class ErrorHandler {
return ILogger::WARN;
case E_USER_DEPRECATED:
return ILogger::DEBUG;
case E_USER_NOTICE:
return ILogger::INFO;