From 274f33a5c97ad35ebcd6ddb30013bd18705737f5 Mon Sep 17 00:00:00 2001 From: Netkas Date: Tue, 6 Dec 2022 01:48:06 -0500 Subject: [PATCH] More efficient logging --- src/ncc/Utilities/RuntimeCache.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ncc/Utilities/RuntimeCache.php b/src/ncc/Utilities/RuntimeCache.php index 815cc2c..48708c8 100644 --- a/src/ncc/Utilities/RuntimeCache.php +++ b/src/ncc/Utilities/RuntimeCache.php @@ -32,7 +32,7 @@ */ public static function set($key, $value): mixed { - Console::outDebug(sprintf('setting cache entry \'%s\'', $key)); + Console::outDebug($key); self::$cache[$key] = $value; return $value; } @@ -45,7 +45,7 @@ */ public static function get($key): mixed { - Console::outDebug(sprintf('getting cache entry \'%s\'', $key)); + Console::outDebug($key); if(isset(self::$cache[$key])) return self::$cache[$key]; @@ -60,7 +60,7 @@ */ public static function setFileAsTemporary(string $path): void { - Console::outDebug(sprintf('setting file \'%s\' as temporary', $path)); + Console::outDebug($path); if(!in_array($path, self::$temporary_files)) self::$temporary_files[] = $path; } @@ -74,7 +74,7 @@ */ public static function removeFileAsTemporary(string $path): void { - Console::outDebug(sprintf('removing file \'%s\' from temporary files list', $path)); + Console::outDebug($path); if(in_array($path, self::$temporary_files)) unset(self::$temporary_files[array_search($path, self::$temporary_files)]); } @@ -88,7 +88,7 @@ { if($clear_memory) { - Console::outDebug('clearing memory cache'); + Console::outDebug(sprintf('clearing memory cache (%d entries)', count(self::$cache))); self::$cache = []; }