summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/isolated-functions.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh
index de62d8611..d34af64fa 100644
--- a/bin/isolated-functions.sh
+++ b/bin/isolated-functions.sh
@@ -15,7 +15,7 @@ elog_base() {
local messagetype
[ -z "${1}" -o -z "${T}" -o ! -d "${T}/logging" ] && return 1
case "${1}" in
- INFO|WARN|ERROR|LOG)
+ INFO|WARN|ERROR|LOG|QA)
messagetype="${1}"
shift
;;
@@ -28,6 +28,12 @@ elog_base() {
return 0
}
+eqawarn() {
+ elog_base QA "$*"
+ echo -e " ${WARN}*${NORMAL} $*"
+ return 0
+}
+
elog() {
elog_base LOG "$*"
echo -e " ${GOOD}*${NORMAL} $*"