diff --git a/core/src/plugins/core.cache/AbstractCacheDriver.php b/core/src/plugins/core.cache/AbstractCacheDriver.php index 6f04f818a1..628e2b9081 100644 --- a/core/src/plugins/core.cache/AbstractCacheDriver.php +++ b/core/src/plugins/core.cache/AbstractCacheDriver.php @@ -177,7 +177,6 @@ public function save($namespace, $id, $data, $lifeTime = 0){ return false; } - error_log("Saving ".$id); $result = $cacheDriver->save($id, $data, $lifeTime); return $result; @@ -192,7 +191,6 @@ public function save($namespace, $id, $data, $lifeTime = 0){ */ public function delete($namespace, $id){ - error_log("Clearing ".$namespace." - ".$id); $cacheDriver = $this->getCacheDriver($namespace); if($this->requiresHttpForwarding($cacheDriver)){ $this->httpDeletion[$namespace.$id.'key'] = ["namespace"=>$namespace, "key" => $id]; @@ -259,7 +257,6 @@ public function deleteKeyStartingWith($namespace, $id){ return false; } Logger::debug("CacheDriver::Http", "Clear Pattern ".$id, ["namespace" => $namespace]); - error_log("Clear pattern ".$id); return $cacheDriver->deleteKeysStartingWith($id); }