mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[SHELL32] Demote 2 noisy goodpath loggings to TRACE CORE-17216
Those 2 did spam heavily when browsing folders with many .zip files within. Mark Jansen confirmed that this is good-path-logging and was just forgotten to be disabled earlier.
This commit is contained in:
parent
162d614cc1
commit
f363c27ab4
1 changed files with 2 additions and 2 deletions
|
@ -645,14 +645,14 @@ HRESULT SHELL32_GetFSItemAttributes(IShellFolder * psf, LPCITEMIDLIST pidl, LPDW
|
|||
Status = SHRegGetValueW(hkey, NULL, L"Attributes", RRF_RT_REG_DWORD, NULL, &dwAttributes, &dwSize);
|
||||
if (Status == STATUS_SUCCESS)
|
||||
{
|
||||
ERR("Augmenting '%S' with dwAttributes=0x%x\n", szFileName, dwAttributes);
|
||||
TRACE("Augmenting '%S' with dwAttributes=0x%x\n", szFileName, dwAttributes);
|
||||
dwShellAttributes |= dwAttributes;
|
||||
}
|
||||
::RegCloseKey(hkey);
|
||||
|
||||
// This should be presented as directory!
|
||||
bDirectory = TRUE;
|
||||
ERR("Treating '%S' as directory!\n", szFileName);
|
||||
TRACE("Treating '%S' as directory!\n", szFileName);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue