l10n->t('Debug mode'); } public function getCategory(): string { return 'system'; } public function run(): SetupResult { if ($this->config->getSystemValueBool('debug', false)) { return SetupResult::warning($this->l10n->t('This instance is running in debug mode. Only enable this for local development and not in production environments.')); } else { return SetupResult::success($this->l10n->t('Debug mode is disabled.')); } } }