Redirect debugme() outputs to stderr

... to address #1956 and other places.
This commit is contained in:
Dirk Wetter 2021-08-04 19:33:01 +02:00
parent 91523be194
commit 65d6c27551

View File

@ -1166,7 +1166,7 @@ get_last_char() {
}
# Checking for last char. If already a separator supplied, we don't need an additional one
debugme() {
[[ "$DEBUG" -ge 2 ]] && "$@"
[[ "$DEBUG" -ge 2 ]] && "$@" >&2
return 0
}