Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2017-02-14 17:08:21 +0300
committerGitHub <noreply@github.com>2017-02-14 17:08:21 +0300
commit257e28f46dd732ea2a9b379c4b1655bb19cd0c7e (patch)
tree22068285643fac291c0f0e807c737f65ee9460ba /config
parent7113af3f9102ca4e27350786934df9de3c54f71b (diff)
parent7f73ee0764b0b00e7235a7f6b017cc071cdc0fe7 (diff)
Merge pull request #3465 from nextcloud/storage-log-locks
Add option to enable locking debug logging
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 3d1829e17e6..228233452eb 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -1448,6 +1448,17 @@ $CONFIG = array(
'memcache.locking' => '\\OC\\Memcache\\Redis',
/**
+ * Enable locking debug logging
+ *
+ * Note that this can lead to a very large volume of log items being written which can lead
+ * to performance degradation and large log files on busy instance.
+ *
+ * Thus enabling this in production for longer periods of time is not recommended
+ * or should be used together with the ``log.condition`` setting.
+ */
+'filelocking.debug' => false,
+
+/**
* Disable the web based updater
*/
'upgrade.disable-web' => false,