From 16cf6e766ff83faf3cb49285113517dba12a6c9b Mon Sep 17 00:00:00 2001 From: HB9HIL <80885850+HB9HIL@users.noreply.github.com> Date: Tue, 20 Aug 2024 17:10:58 +0200 Subject: [PATCH] no need for a error message in mig 210 There is no need for an error message in migration 210. If no .git directory is available, there is no need to process the text files anyway. --- application/migrations/210_process_deprecated.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/migrations/210_process_deprecated.php b/application/migrations/210_process_deprecated.php index d1e8c49ae..ae8926ed6 100644 --- a/application/migrations/210_process_deprecated.php +++ b/application/migrations/210_process_deprecated.php @@ -21,11 +21,11 @@ class Migration_process_deprecated extends CI_Migration } } catch (\Throwable $th) { - log_message("Error","Mig: Error at Mig 210 for txt files. Run manually a git reset."); + log_message("error","Mig: Error at Mig 210 for txt files. Run manually a git reset."); } } else { - log_message("Error","Mig: Error at Mig 210 for txt files. Function exec() not usable. Run manually a git reset."); + log_message("info","Mig 210: No .git found. Skipping processing of txt files."); } }