From a3d30b00966811fe4f9fdef002af941e0a849b3b Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Fri, 8 Mar 2024 17:47:15 +0100 Subject: [PATCH] log_message adjustment --- application/migrations/186_rm_eqsl_dbl.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/application/migrations/186_rm_eqsl_dbl.php b/application/migrations/186_rm_eqsl_dbl.php index c406d04d9..5ab779d5f 100644 --- a/application/migrations/186_rm_eqsl_dbl.php +++ b/application/migrations/186_rm_eqsl_dbl.php @@ -48,16 +48,16 @@ class Migration_rm_eqsl_dbl extends CI_Migration // then remove the file if (!unlink($target_path . '/' . $res)) { - log_message('error', "Mig 186: Dupe file: '" . $target_path . "/" . $res . "' could not be deleted. There is no file with this filename. This shouldn't be a problem."); + log_message('error', "Mig 186: File: '" . $target_path . "/" . $res . "' could not be deleted. There is no file with this filename. This shouldn't be a problem."); } else { - log_message('debug', "Mig 186: Dupe file: '" . $target_path . "/" . $res . "' was deleted because it was a dupe."); + log_message('debug', "Mig 186: File: '" . $target_path . "/" . $res . "' was deleted because it was a dupe."); } } else { // if 'userdata' is disabled we can use the old paths if (!unlink('images/eqsl_card_images/' . $res)) { - log_message('error', "Mig 186: Dupe file: 'images/eqsl_card_images/" . $res . "' could not be deleted. There is no file with this filename. This shouldn't be a problem."); + log_message('error', "Mig 186: File: 'images/eqsl_card_images/" . $res . "' could not be deleted. There is no file with this filename. This shouldn't be a problem."); } else { - log_message('debug', "Mig 186: Dupe file: 'images/eqsl_card_images/" . $res . "' was deleted because it was a dupe."); + log_message('debug', "Mig 186: File: 'images/eqsl_card_images/" . $res . "' was deleted because it was a dupe."); } } }