Reduced severity of perfmon log message in order to reduce log clutter

This commit is contained in:
2016-07-01 10:57:35 +02:00
parent 8254c1303c
commit 7ca7876dbe

View File

@ -125,7 +125,7 @@ int IncrementPerfMon(pPerfMon self)
self->tLast = tCurrent;
self->tTarget = tCurrent + self->iInteg;
InvokeCallBack(self->pCall, VALUECHANGE, &self->fCPS);
traceSys("perfmon","%d:%f", self->iInteg, self->fCPS);
LogIS(VERBOSE,SSYS,"perfmon","%d:%f", self->iInteg, self->fCPS);
}
return 1;
}