diff options
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/metastrings.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/lib/metastrings.php b/engine/lib/metastrings.php index 3b0fba2e7..cf484b2d4 100644 --- a/engine/lib/metastrings.php +++ b/engine/lib/metastrings.php @@ -29,7 +29,7 @@ if ($result!==false) { if ($CONFIG->debug) - error_log("Returning id for string:$string from cache."); + error_log("** Returning id for string:$string from cache."); return $result; } @@ -39,7 +39,7 @@ $METASTRINGS_CACHE[$row->id] = $row->string; // Cache it if ($CONFIG->debug) - error_log("Cacheing {$row->string}"); + error_log("** Cacheing string '{$row->string}'"); return $row->id; } @@ -62,7 +62,7 @@ if (isset($METASTRINGS_CACHE[$id])) { if ($CONFIG->debug) - error_log("Returning string for id:$id from cache."); + error_log("** Returning string for id:$id from cache."); return $METASTRINGS_CACHE[$id]; }
@@ -72,7 +72,7 @@ $METASTRINGS_CACHE[$id] = $row->string; // Cache it if ($CONFIG->debug) - error_log("Cacheing {$row->string}"); + error_log("** Cacheing string '{$row->string}'"); return $row->string; }
|