Rewrote core:
[core.git] / inc / classes / main / cache / class_MemoryCache.php
index ba2cb773d1975bfdccfcb91ecc816bf91a7d9166..55bf24db2e2ee14d1ff67a76ec5dba9847c6b061 100644 (file)
@@ -115,7 +115,7 @@ class MemoryCache extends BaseFrameworkSystem implements Cacheable {
                // Is the offset there?
                if ($this->offsetExists($offset)) {
                        // Purge only existing keys
-                       //* DEBUG: */ $this->debugOutput('CACHE: Unsetting cache ' . $offset);
+                       //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CACHE: Unsetting cache ' . $offset);
                        $this->dataCache->offsetUnset($offset);
                } // END - if
        }