This repository was archived by the owner on Oct 28, 2022. It is now read-only.
forked from iresults/sentry_client
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathext_localconf.php
More file actions
19 lines (18 loc) · 1.41 KB
/
ext_localconf.php
File metadata and controls
19 lines (18 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
if (!defined('TYPO3_MODE')) {
die('Access denied.');
}
$GLOBALS['TYPO3_CONF_VARS']['SYS']['devIPmask'] = ''; // show default TYPO3 error message
$GLOBALS['TYPO3_CONF_VARS']['SYS']['displayErrors'] = '0'; // don't turn errors into exceptions, use productionExceptionHandler
$GLOBALS['TYPO3_CONF_VARS']['SYS']['enable_errorDLOG'] = '1'; // developer log ('devlog' extension)
$GLOBALS['TYPO3_CONF_VARS']['SYS']['enable_exceptionDLOG'] = '1'; // developer log ('devlog' extension)
$GLOBALS['TYPO3_CONF_VARS']['SYS']['enableDeprecationLog'] = 'devlog';
$GLOBALS['TYPO3_CONF_VARS']['SYS']['systemLog'] = ''; // no local logging (= maximum performance)
$GLOBALS['TYPO3_CONF_VARS']['SYS']['systemLogLevel'] = '0'; // log everything
$GLOBALS['TYPO3_CONF_VARS']['SYS']['syslogErrorReporting'] = E_ALL;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['belogErrorReporting'] = E_ALL;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['exceptionalErrors'] = E_RECOVERABLE_ERROR | E_USER_DEPRECATED;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['errorHandlerErrors'] = E_WARNING | E_USER_ERROR | E_USER_WARNING | E_USER_NOTICE | E_RECOVERABLE_ERROR | E_DEPRECATED | E_USER_DEPRECATED;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['errorHandler'] = 'SentryClient\\ErrorHandler';
$GLOBALS['TYPO3_CONF_VARS']['SYS']['debugExceptionHandler'] = 'SentryClient\\DebugExceptionHandler';
$GLOBALS['TYPO3_CONF_VARS']['SYS']['productionExceptionHandler'] = 'SentryClient\\ProductionExceptionHandler';