Log the command being run when calling CT_DoExecLog, which is kinda the point of CT_DoExecLog, anyway...
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jul 14 15:20:11 2008 +0000 (2008-07-14)
changeset 6576eb39aec2d07
parent 656 b43129be0f04
child 658 3e590fb8f1a6
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(-)
scripts/functions
     1.1 --- a/scripts/functions	Mon Jul 14 15:15:40 2008 +0000
     1.2 +++ b/scripts/functions	Mon Jul 14 15:20:11 2008 +0000
     1.3 @@ -110,7 +110,7 @@
     1.4  CT_DoExecLog() {
     1.5      local level="$1"
     1.6      shift
     1.7 -    CT_DoLog ${level} "${@}"
     1.8 +    CT_DoLog DEBUG "==> Executing: '${@}'"
     1.9      eval "${@}" 2>&1 |CT_DoLog "${level}"
    1.10  }
    1.11