- Timestamp:
- Apr 18, 2010, 11:00:19 PM (15 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/config.php
r7842 r7843 23 23 24 24 25 $config['mail'] = ' test@test.com';25 $config['mail'] = 'receipient@example.org'; 26 26 27 27 /* -
trunk/src/inc/LogHandler.class.php
r7842 r7843 29 29 30 30 /* 31 * Actions on log levels31 * XXX: Actions on log levels, needs to go to the config 32 32 */ 33 33 define('LOG_LEVEL_ECHO', SYSLOG_DEBUG); 34 34 define('LOG_LEVEL_WRITE', SYSLOG_DEBUG); 35 define('LOG_LEVEL_MAIL', SYSLOG_ DEBUG);35 define('LOG_LEVEL_MAIL', SYSLOG_EMERG); 36 36 37 37 class LogHandler { … … 116 116 } 117 117 118 /* XXX: Sends email out for every line, instead of all the lines of the current output */ 118 119 if ($logno <= LOG_LEVEL_MAIL) { 119 120 global $config;
Note:
See TracChangeset
for help on using the changeset viewer.