소스 검색

#IQRV #comment 移除部分日志

80374374 6 달 전
부모
커밋
338054cf57
2개의 변경된 파일2개의 추가작업 그리고 4개의 파일을 삭제
  1. 0 2
      Framework/spbase/SpEntity.cpp
  2. 2 2
      Framework/spbase/SpFSM.cpp

+ 0 - 2
Framework/spbase/SpEntity.cpp

@@ -166,8 +166,6 @@ static void task_callback(threadpool_t *threadpool, void *arg, param_size_t para
 	ITaskSp *pTask = (ITaskSp*)arg;
 	SpEntity *pEntity = (SpEntity*)param1;
 
-	DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("task_callback pTask = %p", pTask);
-
 #ifdef _WIN32
 	SetthreadGroup(GetCurrentThreadId(), pEntity->GetEntityBase()->GetEntityName());
 	try {

+ 2 - 2
Framework/spbase/SpFSM.cpp

@@ -128,7 +128,7 @@ ErrorCodeEnum FSMBase::PostExitEvent()
 
 void FSMBase::PostEventLIFO(FSMEvent *e)
 {
-	DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("post event last in first out: %d", e->iEvt);
+	//DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("post event last in first out: %d", e->iEvt);
 	try
 	{
 		SpEntity *pEntity = dynamic_cast<SpEntity*>(m_pEntity->m_pEntityFunction);
@@ -142,7 +142,7 @@ void FSMBase::PostEventLIFO(FSMEvent *e)
 
 void FSMBase::PostEventFIFO(FSMEvent *e)
 {
-	DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("post event first in first out: %d", e->iEvt);
+	//DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("post event first in first out: %d", e->iEvt);
 	try
 	{
 		SpEntity *pEntity = dynamic_cast<SpEntity*>(m_pEntity->m_pEntityFunction);