|
@@ -3863,7 +3863,7 @@ void ResourceWatcherFSM::GetCommDesktopDirectory(CSimpleStringA& outDir)
|
|
|
memset(lstr, 0, strlen(lstr));
|
|
|
SHGetPathFromIDListA(lp, lstr);
|
|
|
outDir = lstr;
|
|
|
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("CSIDL_COMMON_DESKTOPDIRECTORY: %s", outDir.GetData());
|
|
|
+ DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("CSIDL_COMMON_DESKTOPDIRECTORY: %s", outDir.GetData());
|
|
|
}
|
|
|
else {
|
|
|
DbgWithLink(LOG_LEVEL_ERROR, LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("SHGetSpecialFolderLocation for CSIDL_COMMON_DESKTOPDIRECTORY failed:%u", hr);
|
|
@@ -3882,7 +3882,7 @@ void ResourceWatcherFSM::GetUserDesktopDirectory(CSimpleStringA& outDir)
|
|
|
memset(lstr, 0, strlen(lstr));
|
|
|
SHGetPathFromIDListA(lp, lstr);
|
|
|
outDir = lstr;
|
|
|
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("CSIDL_DESKTOP: %s", outDir.GetData());
|
|
|
+ DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("CSIDL_DESKTOP: %s", outDir.GetData());
|
|
|
}
|
|
|
else {
|
|
|
DbgWithLink(LOG_LEVEL_ERROR, LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("SHGetSpecialFolderLocation for CSIDL_DESKTOP failed:%u", hr);
|
|
@@ -3919,7 +3919,7 @@ void ResourceWatcherFSM::GetCommStartupDirectory(CSimpleStringA& outDir)
|
|
|
memset(lstr, 0, strlen(lstr));
|
|
|
SHGetPathFromIDListA(lp, lstr);
|
|
|
outDir = lstr;
|
|
|
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("CSIDL_COMMON_STARTUP: %s", outDir.GetData());
|
|
|
+ DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("CSIDL_COMMON_STARTUP: %s", outDir.GetData());
|
|
|
}
|
|
|
else {
|
|
|
DbgWithLink(LOG_LEVEL_ERROR, LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("SHGetSpecialFolderLocation for CSIDL_COMMON_STARTUP failed:%u", hr);
|
|
@@ -3938,7 +3938,7 @@ void ResourceWatcherFSM::GetUserStartupDirectory(CSimpleStringA& outDir)
|
|
|
memset(lstr, 0, strlen(lstr));
|
|
|
SHGetPathFromIDListA(lp, lstr);
|
|
|
outDir = lstr;
|
|
|
- DbgWithLink(LOG_LEVEL_INFO, LOG_TYPE_SYSTEM)("CSIDL_STARTUP: %s", outDir.GetData());
|
|
|
+ DbgWithLink(LOG_LEVEL_DEBUG, LOG_TYPE_SYSTEM)("CSIDL_STARTUP: %s", outDir.GetData());
|
|
|
}
|
|
|
else {
|
|
|
DbgWithLink(LOG_LEVEL_ERROR, LOG_TYPE_SYSTEM).setAPI(__FUNCTION__)("SHGetSpecialFolderLocation for CSIDL_STARTUP failed:%u", hr);
|