diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-02 09:19:12 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-02 09:19:12 +0100 |
commit | e9029f94cb6eb9b37623ea1a2faf8aac11675900 (patch) | |
tree | 7bbbe0ef91bac53ed5d61226c366ca9bedf2a5da /config | |
parent | 0769556989f3426d1c8ab51043518e2748b143fe (diff) | |
parent | 553ce946d3c999823c5b1f6cfde071ea41a80341 (diff) | |
download | nextcloud-server-e9029f94cb6eb9b37623ea1a2faf8aac11675900.tar.gz nextcloud-server-e9029f94cb6eb9b37623ea1a2faf8aac11675900.zip |
Merge pull request #12310 from kampka/master
Implement a logger to log to error_log
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 78faf064a8b..4de3371ea4b 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -457,8 +457,10 @@ $CONFIG = array( /** * By default the ownCloud logs are sent to the ``owncloud.log`` file in the - * default ownCloud data directory. If syslogging is desired, set this parameter - * to ``syslog``. + * default ownCloud data directory. + * If syslogging is desired, set this parameter to ``syslog``. + * Setting this parameter to ``errorlog`` will use the PHP error_log function + * for logging. */ 'log_type' => 'owncloud', |