From a8beeaf951a8e70804c19a30c2aafd70f96334cf Mon Sep 17 00:00:00 2001 From: Colin Hebert Date: Sun, 23 Mar 2025 12:09:46 +1100 Subject: [PATCH] Print whole line in debug --- zfs-inplace-rebalancing.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zfs-inplace-rebalancing.sh b/zfs-inplace-rebalancing.sh index aa3ee8d..050fa46 100755 --- a/zfs-inplace-rebalancing.sh +++ b/zfs-inplace-rebalancing.sh @@ -39,7 +39,7 @@ function color_echo() { # Print a given text entirely in a given color function echo_debug() { if [ "$debug_flag" = true ]; then - text=$1 + text=$@ echo "${text}" fi }