From 180afa5637e4419b2c49b2d11e6274f72d2afbbf Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 9 Oct 2014 17:40:52 +0200 Subject: [PATCH] lib/lib.bash: use PSI_DEBUG not EM_DEBUG --- lib/lib.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lib.bash b/lib/lib.bash index bbeeaa1..2dceab7 100644 --- a/lib/lib.bash +++ b/lib/lib.bash @@ -56,7 +56,7 @@ error() { } debug() { - [[ ${EM_DEBUG} ]] || return 0 + [[ ${PSI_DEBUG} ]] || return 0 log 2 "$@" }