mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[NTUSER] Reduce debug logging spam (#5661)
Silence two of the most debug log spammers in co_MsqSendMessage() and in co_IntProcessMouseMessage() by demoting ERR to WARN.
This commit is contained in:
parent
6b69202016
commit
4976fba59e
1 changed files with 2 additions and 2 deletions
|
@ -1263,7 +1263,7 @@ co_MsqSendMessage(PTHREADINFO ptirec,
|
|||
Entry = Entry->Flink;
|
||||
}
|
||||
|
||||
ERR("MsqSendMessage timed out 2 Status %lx\n", WaitStatus);
|
||||
WARN("MsqSendMessage timed out 2 Status %lx\n", WaitStatus);
|
||||
break;
|
||||
}
|
||||
// Receiving thread passed on and left us hanging with issues still pending.
|
||||
|
@ -1535,7 +1535,7 @@ BOOL co_IntProcessMouseMessage(MSG* msg, BOOL* RemoveMessages, BOOL* NotForUs, L
|
|||
}
|
||||
else
|
||||
{
|
||||
ERR("Not the same cursor!\n");
|
||||
WARN("Not the same cursor!\n");
|
||||
}
|
||||
|
||||
msg->hwnd = UserHMGetHandle(pwndMsg);
|
||||
|
|
Loading…
Reference in a new issue