From 605b2967524bf6496d32848659f12c8b1308f0be Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Tue, 10 Dec 2024 20:03:05 +0100 Subject: [PATCH] adjust log_message --- application/libraries/Paths.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/libraries/Paths.php b/application/libraries/Paths.php index 34aa5097b..15841feaf 100644 --- a/application/libraries/Paths.php +++ b/application/libraries/Paths.php @@ -38,7 +38,7 @@ class Paths if (file_exists($fullpath)) { return base_url($filepath) . '?v=' . filemtime($fullpath); } else { - log_message('debug', 'File does not exist: ' . $filepath); + log_message('error', 'CACHE BUSTER - File does not exist: ' . $filepath); } return base_url($filepath); }