Use VERBOSE_LOG for more common calls

This commit is contained in:
2025-10-08 18:12:50 -06:00
parent 2ffc56f5c2
commit 15ea650fd5
2 changed files with 9 additions and 8 deletions

View File

@@ -17,13 +17,13 @@ void setLastErrorFromErrno() { wibo::lastError = wibo::winErrorFromErrno(errno);
DWORD WIN_FUNC GetLastError() {
HOST_CONTEXT_GUARD();
DEBUG_LOG("GetLastError() -> %u\n", wibo::lastError);
VERBOSE_LOG("GetLastError() -> %u\n", wibo::lastError);
return wibo::lastError;
}
void WIN_FUNC SetLastError(DWORD dwErrCode) {
HOST_CONTEXT_GUARD();
DEBUG_LOG("SetLastError(%u)\n", dwErrCode);
VERBOSE_LOG("SetLastError(%u)\n", dwErrCode);
wibo::lastError = dwErrCode;
}