]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
remove logging stuff from DiskCache
authorEvan Prodromou <evan@status.net>
Tue, 5 Jan 2010 08:48:48 +0000 (22:48 -1000)
committerEvan Prodromou <evan@status.net>
Tue, 5 Jan 2010 08:48:48 +0000 (22:48 -1000)
plugins/DiskCachePlugin.php

index 86aedd19cc734374ab5eded818b94c4903f62c97..2b788decb94b06c60a780b355574b328ed0f8c36 100644 (file)
@@ -69,11 +69,8 @@ class DiskCachePlugin extends Plugin
     {
         $filename = $this->keyToFilename($key);
         if (file_exists($filename)) {
-            $this->log(LOG_INFO, "Cache hit on key '$key'");
             $data = file_get_contents($filename);
             $value = unserialize($data);
-        } else {
-            $this->log(LOG_INFO, "Cache miss on key '$key'");
         }
 
         Event::handle('EndCacheGet', array($key, &$value));
@@ -94,8 +91,6 @@ class DiskCachePlugin extends Plugin
 
     function onStartCacheSet(&$key, &$value, &$flag, &$expiry, &$success)
     {
-        $this->log(LOG_INFO, "Setting value for key '$key'");
-
         $filename = $this->keyToFilename($key);
         $parent = dirname($filename);
 
@@ -140,8 +135,6 @@ class DiskCachePlugin extends Plugin
 
     function onStartCacheDelete(&$key, &$success)
     {
-        $this->log(LOG_INFO, "Deleting value for key '$key'");
-
         $filename = $this->keyToFilename($key);
 
         if (file_exists($filename) && !is_dir($filename)) {