summaryrefslogtreecommitdiff
path: root/scripts/functions
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-07-14 15:20:11 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-07-14 15:20:11 (GMT)
commit2a884e354a933b1297f6e7c8956bb9b9bf50b8b7 (patch)
tree629700bd2a670f0d7b41ad206a5bab99fd81f42b /scripts/functions
parentdd5a5f683e212dc3067ad029103b8afd4eb9e64e (diff)
Log the command being run when calling CT_DoExecLog, which is kinda the point of CT_DoExecLog, anyway...
/trunk/scripts/functions | 2 1 1 0 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Diffstat (limited to 'scripts/functions')
-rw-r--r--scripts/functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functions b/scripts/functions
index bd3c336..a960f70 100644
--- a/scripts/functions
+++ b/scripts/functions
@@ -110,7 +110,7 @@ CT_DoLog() {
CT_DoExecLog() {
local level="$1"
shift
- CT_DoLog ${level} "${@}"
+ CT_DoLog DEBUG "==> Executing: '${@}'"
eval "${@}" 2>&1 |CT_DoLog "${level}"
}