true, 'FE/debug' => true, 'SYS/devIPmask' => '*', 'SYS/displayErrors' => 1, // Values below are not available in UI 'LOG/TYPO3/CMS/deprecations/writerConfiguration/' . LogLevel::NOTICE . '/' . FileWriter::class . '/disabled' => false, // E_WARNING | E_RECOVERABLE_ERROR | E_DEPRECATED 'SYS/exceptionalErrors' => 12290, ]; /** * Development preset is always available * * @return bool Always TRUE */ public function isAvailable() { return true; } /** * If context is set to development, priority * of this preset is raised. * * @return int Priority of preset */ public function getPriority() { $priority = $this->priority; if (Environment::getContext()->isDevelopment()) { $priority = $priority + 20; } return $priority; } }