summaryrefslogtreecommitdiffstats
path: root/lib/base.php
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2015-02-18 15:45:38 +0100
committerLukas Reschke <lukas@owncloud.com>2015-02-18 15:45:38 +0100
commite4bf3fcb53fd2a4464d264071320fc8b522097d5 (patch)
tree5ea50a6660b0f7cc81aa0cf80548d4ee8d506d16 /lib/base.php
parentc4fdb9cc241e862afd45e1d4cd4fd4c2216002d1 (diff)
parentcd4c064ebf13218ce43940928041efac4c5f46ad (diff)
downloadnextcloud-server-e4bf3fcb53fd2a4464d264071320fc8b522097d5.tar.gz
nextcloud-server-e4bf3fcb53fd2a4464d264071320fc8b522097d5.zip
Merge pull request #14330 from owncloud/revert-13879-add_debug_log_for_memcache_instantiation
Revert "add debug log for memcache instantiation"
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/base.php b/lib/base.php
index 93f7a2a9b21..cade3ed63cd 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -728,8 +728,7 @@ class OC {
$instanceId = \OC::$server->getSystemConfig()->getValue('instanceid', null);
if ($instanceId) {
try {
- $memcacheFactory = new \OC\Memcache\Factory($instanceId,
- \OC::$server->getLogger());
+ $memcacheFactory = new \OC\Memcache\Factory($instanceId);
self::$loader->setMemoryCache($memcacheFactory->createLowLatency('Autoloader'));
} catch (\Exception $ex) {
}