diff --git a/typo3/sysext/install/Classes/SystemEnvironment/Check.php b/typo3/sysext/install/Classes/SystemEnvironment/Check.php
index 1756eaa503096c5244830f5456ff97413d2d69b4..ef5f453b6be3b92f1dbc1429f6f74e334b5ab7aa 100644
--- a/typo3/sysext/install/Classes/SystemEnvironment/Check.php
+++ b/typo3/sysext/install/Classes/SystemEnvironment/Check.php
@@ -511,7 +511,7 @@ class Check {
 	 */
 	protected function checkXdebugMaxNestingLevel() {
 		if (extension_loaded('xdebug')) {
-			$recommendedMaxNestingLevel = 250;
+			$recommendedMaxNestingLevel = 400;
 			$currentMaxNestingLevel = ini_get('xdebug.max_nesting_level');
 			if ($currentMaxNestingLevel < $recommendedMaxNestingLevel) {
 				$status = new Status\ErrorStatus();