From 13ad1b9e1194aee11856808098533e3e5ce86633 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Tue, 10 Dec 2024 20:02:34 +0100 Subject: [PATCH] only show filepath --- 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 2b70ef3d2..34aa5097b 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: ' . $fullpath . '; Search in code for: ' . $filepath); + log_message('debug', 'File does not exist: ' . $filepath); } return base_url($filepath); }