Merge pull request #13125 from owncloud/lower-deprecation-warning-level

degraded logging policy for server container in AppFramework
remotes/origin/fix-10825
Thomas Müller 12 years ago
commit 68efeba343
  1. 4
      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')->info(
$c->query('OCP\\ILogger')->debug(
'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')->info(
$c->query('OCP\\ILogger')->debug(
'Accessing the API class is deprecated! Use the appropriate ' .
'services instead!'
);

Loading…
Cancel
Save