diff options
author | Steffen Lindner <mail@steffen-lindner.de> | 2015-10-23 13:43:41 +0200 |
---|---|---|
committer | Steffen Lindner <mail@steffen-lindner.de> | 2015-10-23 14:17:04 +0200 |
commit | 371f4bf47299347762f6fcb019272f5f0f1742d9 (patch) | |
tree | 019a087a03196a90571ed41289567f2e493734aa | |
parent | 49879b868beb0e50f14d1a85047bd3dab2c85de3 (diff) | |
download | nextcloud-server-371f4bf47299347762f6fcb019272f5f0f1742d9.tar.gz nextcloud-server-371f4bf47299347762f6fcb019272f5f0f1742d9.zip |
Add syslog_tag docu to sample config
-rw-r--r-- | config/config.sample.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 59433eb4b9b..d6e47a38e02 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -466,6 +466,14 @@ $CONFIG = array( 'loglevel' => 2, /** + * If you maintain different instances and aggregate the logs, you may want + * to distinguish between them. ``syslog_tag`` can be set per instance + * with a unique id. Only available if ``log_type`` is set to ``syslog``. + * The default value is ``ownCloud``. + */ +'syslog_tag' => 'ownCloud', + +/** * Log condition for log level increase based on conditions. Once one of these * conditions is met, the required log level is set to debug. This allows to * debug specific requests, users or apps |