소스 검색

!2 log Duplication ScheduleTimer

chenliangyu 4 달 전
부모
커밋
6674cfeaa5
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      Framework/spbase/SpFSM.cpp

+ 1 - 0
Framework/spbase/SpFSM.cpp

@@ -283,6 +283,7 @@ ErrorCodeEnum FSMBase::ScheduleTimer(int iTimerId, unsigned int timeout)
 	FSMTimer *pos;
 	ListEntry_ForEach(pos, &m_timerlist, FSMTimer, entry) {
 		if (pos->iTimerId == iTimerId) {
+			DbgWithLink(LOG_LEVEL_ERROR, LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("ScheduleTimer Duplication");
 			return Error_Duplication;
 		}
 	}