diff options
author | Bernhard Posselt <Raydiation@users.noreply.github.com> | 2015-01-05 12:09:59 +0100 |
---|---|---|
committer | Bernhard Posselt <Raydiation@users.noreply.github.com> | 2015-01-05 12:09:59 +0100 |
commit | a6d2019014fc8967509a0baf727365cd08b545ff (patch) | |
tree | a4cef2e685c0b139d610a2d47e92c775911974b5 | |
parent | a0023974e3c1127cfcc9b2f42aecc5825329e3e9 (diff) | |
parent | 8689605999f9266893e5401ed541877e811c1fd2 (diff) | |
download | nextcloud-server-a6d2019014fc8967509a0baf727365cd08b545ff.tar.gz nextcloud-server-a6d2019014fc8967509a0baf727365cd08b545ff.zip |
Merge pull request #13107 from owncloud/change-to-better-error-level
Use info instead of warning log level
-rw-r--r-- | lib/private/appframework/dependencyinjection/dicontainer.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/appframework/dependencyinjection/dicontainer.php b/lib/private/appframework/dependencyinjection/dicontainer.php index 2c5089865a3..8d44d5fda87 100644 --- a/lib/private/appframework/dependencyinjection/dicontainer.php +++ b/lib/private/appframework/dependencyinjection/dicontainer.php @@ -201,7 +201,7 @@ class DIContainer extends SimpleContainer implements IAppContainer { }); $this->registerService('ServerContainer', function ($c) { - $c->query('OCP\\ILogger')->warning( + $c->query('OCP\\ILogger')->info( 'Accessing the server container is deprecated. Use type ' . 'annotations to inject core services instead!' ); @@ -222,7 +222,7 @@ class DIContainer extends SimpleContainer implements IAppContainer { * App Framework APIs */ $this->registerService('API', function($c){ - $c->query('OCP\\ILogger')->warning( + $c->query('OCP\\ILogger')->info( 'Accessing the API class is deprecated! Use the appropriate ' . 'services instead!' ); |