summaryrefslogtreecommitdiff
path: root/doc/en_US/config.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'doc/en_US/config.markdown')
-rw-r--r--doc/en_US/config.markdown7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/en_US/config.markdown b/doc/en_US/config.markdown
index 20ef03b3..a5497d64 100644
--- a/doc/en_US/config.markdown
+++ b/doc/en_US/config.markdown
@@ -9,14 +9,15 @@ Enable/Disable debug mode
```php
define('DEBUG', true);
-define('LOG_DRIVER', 'file'); // Other drivers are: syslog, stdout, stderr or file
+define('LOG_DRIVER', 'file'); // Other drivers are: syslog, stdout, stderr, system or file
// By default, the log file is in data/debug.log but you can change the path:
define('LOG_FILE', '/path/to/debug.log');
```
-The log driver must be defined if you enable the debug mode.
-The debug mode logs all SQL queries and the time taken to generate pages.
+- The log driver must be defined if you enable the debug mode.
+- The debug mode logs all SQL queries and the time taken to generate pages.
+- The `system` driver use the built-in PHP logger which could be configured in the [php.ini](http://php.net/manual/en/errorfunc.configuration.php#ini.error-log). By default, log messages are sent to the web server logs.
Plugins
-------