|
|
@@ -343,9 +343,8 @@ ErrorCodeEnum ResourceWatcherFSM::OnInit()
|
|
|
erroCode = GetEntityBase()->GetFunction()->GetSystemStaticInfo(m_RvcSysinfo);
|
|
|
m_bFirstRunAfterBoot = DetectIsFirstRunAtBoot();
|
|
|
if (m_bFirstRunAfterBoot) {
|
|
|
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("First time to run after system boot.");
|
|
|
+ DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("First time to run after system boot.");
|
|
|
}
|
|
|
-
|
|
|
spCtSettingConfig->ReadConfigValueInt(m_pEntity->GetEntityName(), "DisplayCnt", m_iNonSignedDisplay);
|
|
|
if (m_iNonSignedDisplay <= 0)
|
|
|
m_iNonSignedDisplay = 10;
|
|
|
@@ -4160,7 +4159,7 @@ void ResourceWatcherFSM::DetectSoftwareInstallStatus()
|
|
|
{
|
|
|
strSoftwaresNames[i] = value;
|
|
|
}
|
|
|
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("Detect SoftDetect from CentralSetting, %d: [%s],[%s],[%s]"
|
|
|
+ DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("Detect SoftDetect from CentralSetting, %d: [%s],[%s],[%s]"
|
|
|
, i, item.GetData(), strSoftwaresNames[i].GetData(), strSoftwaresVers[i].GetData());
|
|
|
nNameCounts++;
|
|
|
}
|
|
|
@@ -4171,14 +4170,11 @@ void ResourceWatcherFSM::DetectSoftwareInstallStatus()
|
|
|
vector<SetupSoftInfo> stupInfo;
|
|
|
DWORD dwInitFlag(0);
|
|
|
FetchSoftewareInstall(stupInfo, dwInitFlag);
|
|
|
- DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("1software size:%d", stupInfo.size());
|
|
|
if (dwInitFlag == 1) {
|
|
|
FetchSoftewareInstall(stupInfo, dwInitFlag);
|
|
|
- DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("2software size:%d", stupInfo.size());
|
|
|
}
|
|
|
dwInitFlag = 2;
|
|
|
FetchSoftewareInstall(stupInfo, dwInitFlag);
|
|
|
- DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("3software size:%d", stupInfo.size());
|
|
|
for (int i = 0; i < nNameCounts; ++i) {
|
|
|
bool found(false);
|
|
|
for (int j = 0; j < stupInfo.size(); j++) {
|