diff --git a/lib/private/appframework/dependencyinjection/dicontainer.php b/lib/private/appframework/dependencyinjection/dicontainer.php
index 2c5089865a3a08c6d81983e23352c444f88a972c..8d44d5fda8721caba96fe6622218d0db63d2f567 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!'
 			);