- Removed a trace message which flooded the trace whenever a Tcl task

executed.
This commit is contained in:
2014-10-24 09:16:32 +02:00
parent be058abdef
commit fd986402ff

View File

@ -89,8 +89,10 @@ static int TclTaskFunction(void *pData)
MacroPush(self->con);
status = Tcl_Eval(pTcl, self->scriptName);
MacroPop();
/*
traceSys("task","Executed %s with results %d and %s",self->scriptName, status,
Tcl_GetStringResult(pTcl));
*/
if(status == 0){
retVal = atoi(Tcl_GetStringResult(pTcl));
} else {