# HG changeset patch # User Franz Glasner # Date 1725182214 -7200 # Node ID 5cc6ea0ef9656663abc132eaa90f4333a4f955a1 # Parent 4186db70abe60fcc0755079d924a31af9f1cd052 array.sh: simplify the output of debug output to make it less verbose diff -r 4186db70abe6 -r 5cc6ea0ef965 share/local-bsdtools/array.sh --- a/share/local-bsdtools/array.sh Sun Sep 01 11:15:01 2024 +0200 +++ b/share/local-bsdtools/array.sh Sun Sep 01 11:16:54 2024 +0200 @@ -689,6 +689,6 @@ #: Debug output helper for `array_debug`. #: _array_debug_print_value() { - printf "DEBUG: idx: %s, val: \`%s'\\n" "$2" "$3" 1>&2 + printf "DEBUG: %s: \`%s'\\n" "$2" "$3" 1>&2 return 0 }