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