- Removed a trace message which flooded the trace whenever a Tcl task
executed.
This commit is contained in:
@ -89,8 +89,10 @@ static int TclTaskFunction(void *pData)
|
|||||||
MacroPush(self->con);
|
MacroPush(self->con);
|
||||||
status = Tcl_Eval(pTcl, self->scriptName);
|
status = Tcl_Eval(pTcl, self->scriptName);
|
||||||
MacroPop();
|
MacroPop();
|
||||||
|
/*
|
||||||
traceSys("task","Executed %s with results %d and %s",self->scriptName, status,
|
traceSys("task","Executed %s with results %d and %s",self->scriptName, status,
|
||||||
Tcl_GetStringResult(pTcl));
|
Tcl_GetStringResult(pTcl));
|
||||||
|
*/
|
||||||
if(status == 0){
|
if(status == 0){
|
||||||
retVal = atoi(Tcl_GetStringResult(pTcl));
|
retVal = atoi(Tcl_GetStringResult(pTcl));
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user