Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Forgotten debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Sep 9, 2016
1 parent 67785b8 commit 821c074
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions core/src/plugins/core.cache/AbstractCacheDriver.php
Expand Up @@ -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;
Expand All @@ -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];
Expand Down Expand Up @@ -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);
}

Expand Down

0 comments on commit 821c074

Please sign in to comment.