From a2fdd224760e2d1d7a9b2f947fc1a8abf491eede Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig-=C3=98rjan=20Smelror?= Date: Tue, 30 Jan 2024 15:57:48 +0100 Subject: [PATCH] Turn off debugging --- qsgen2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qsgen2 b/qsgen2 index 823307e..6fbadc5 100755 --- a/qsgen2 +++ b/qsgen2 @@ -541,7 +541,7 @@ function _blog_idx_for_index() { do echo "${yellow}_blog_idx_for_index: meta_str from BLOG_META_STR_ARRAY from _blogs${end}" echo "${yellow}:: _blog_idx_for_index: ${meta_str}${end}" - local debug=true + local debug=false # Split meta_str into individual metadata components local -a meta_array=("${(@s/||/)meta_str}") @@ -554,7 +554,7 @@ function _blog_idx_for_index() { # Iterate over each component and extract information if (${debug}) echo "${red}_blog_idx_for_index: Iterate over each component and extract information${end}" for component in "${meta_array[@]}"; do - local debug=true + local debug=false case "${component}" in SDATE:*) sdate=${component#SDATE: } ;; BTITLE:*) btitle=${component#BTITLE: } ;;