diff options
-rw-r--r-- | it_cache.class | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/it_cache.class b/it_cache.class index 2186af3..bed0cd9 100644 --- a/it_cache.class +++ b/it_cache.class @@ -86,7 +86,13 @@ static function put($key, $value, $p = array()) $success = ($func = self::$_store_func) ? $func($key, $value, $p['ttl']) : null; if (!$success && $p['safety'] == 1) - it::error(['title' => ($p['distributed'] ? "memcache (" . ($memcache ? ($memcache->getResultMessage() . " on " . $memcache->getServerByKey($key)['host']) : "n/a") . ")" : self::$_store_func) . " in it_cache::put failed", 'body' => "key='$key'", 'timewindow' => "1200-1220"]); + it::error(array_filter([ + 'title' => ($p['distributed'] ? "memcache (" . ($memcache ? ($memcache->getResultMessage() . " on " . $memcache->getServerByKey($key)['host']) : "n/a") . ")" : self::$_store_func) . " in it_cache::put failed", + 'body' => "key='$key'", + 'timewindow' => "1200-1220", + 'blockmailid' => $memcache ? "memcache_on_" . $memcache->getServerByKey($key)['host'] : null, + 'blockmail' => $memcache? 12*3600 : null, + ])); $GLOBALS['it_cache_local'][$key] = $value; # Also store local copy |