remove eLogError and eLog in one place

This commit is contained in:
zolliker
2009-03-27 15:16:16 +00:00
parent 08599649d4
commit 50b0a5c4a7
2 changed files with 2 additions and 2 deletions

View File

@ -230,7 +230,7 @@ int exeBufProcess(pExeBuf self, SicsInterp * pSics,
Tcl Error Tcl Error
*/ */
if (strlen(pTcl->result) >= 2) { if (strlen(pTcl->result) >= 2) {
SCPrintf(pCon, eLogError, "ERROR: Tcl reported: %s", SCPrintf(pCon, eError, "ERROR: Tcl reported: %s",
pTcl->result); pTcl->result);
} }
} else { } else {

View File

@ -169,7 +169,7 @@ static int RemHandle(RemServer * remserver)
static void RemCopy(RemChannel * rc, SConnection * pCon) static void RemCopy(RemChannel * rc, SConnection * pCon)
{ {
if (pCon != NULL && rc->line[0] != '\0') { if (pCon != NULL && rc->line[0] != '\0') {
SCPrintf(pCon, eLog, " %s", rc->line); SCPrintf(pCon, eWarning, " %s", rc->line);
} }
} }