aboutsummaryrefslogtreecommitdiff
path: root/lib/common
diff options
context:
space:
mode:
Diffstat (limited to 'lib/common')
-rw-r--r--lib/common11
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/common b/lib/common
index 8c33209..d53f0cf 100644
--- a/lib/common
+++ b/lib/common
@@ -39,6 +39,14 @@ assert_is_app() {
fi
}
+debug() {
+ [[ $echo_debug == no ]] || echo "D: $usage_app: $@" 2>&1
+}
+
+info() {
+ echo "I: $usage_app: $@" 2>&1
+}
+
fatal() {
echo "$usage_app: fatal: $@" 2>&1
exit 1
@@ -192,4 +200,5 @@ run_app() {
PATH=$PATH:$APPSH_HOME/bin:$APPSH_HOME/libexec
# Save for later
-usage_app=$0
+usage_app=${0##*/}
+echo_debug=${echo_debug-no}