From f112e31b46b1b1e514878c5ce0105c508ef761f3 Mon Sep 17 00:00:00 2001 From: akemidx Date: Thu, 7 Dec 2023 17:56:10 -0500 Subject: [PATCH] changing log level from ERROR to LOG --- app/Helpers/Helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Helpers/Helper.php b/app/Helpers/Helper.php index b015f988b3..c7aa5af04a 100644 --- a/app/Helpers/Helper.php +++ b/app/Helpers/Helper.php @@ -354,7 +354,7 @@ class Helper if ($index >= $total_colors) { - \Log::log('Status label count is '.$index.' and exceeds the allowed count of 266.'); + \Log::info('Status label count is '.$index.' and exceeds the allowed count of 266.'); //patch fix for array key overflow (color count starts at 1, array starts at 0) $index = $index - $total_colors - 1;