[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:
Julio Carchi 2023-09-09 14:28:19 -05:00 committed by GitHub
parent 6b69202016
commit 4976fba59e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1263,7 +1263,7 @@ co_MsqSendMessage(PTHREADINFO ptirec,
Entry = Entry->Flink; Entry = Entry->Flink;
} }
ERR("MsqSendMessage timed out 2 Status %lx\n", WaitStatus); WARN("MsqSendMessage timed out 2 Status %lx\n", WaitStatus);
break; break;
} }
// Receiving thread passed on and left us hanging with issues still pending. // 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 else
{ {
ERR("Not the same cursor!\n"); WARN("Not the same cursor!\n");
} }
msg->hwnd = UserHMGetHandle(pwndMsg); msg->hwnd = UserHMGetHandle(pwndMsg);