winpr: thread: fix wrong log level in ThreadCloseHandle

This commit is contained in:
Kobi Mizrachi 2019-12-26 10:22:41 +02:00 committed by akallabeth
parent 7fec130dbc
commit 8c3054851c
1 changed files with 1 additions and 1 deletions

View File

@ -558,7 +558,7 @@ BOOL ThreadCloseHandle(HANDLE handle)
if ((thread->started) && (WaitForSingleObject(thread, 0) != WAIT_OBJECT_0))
{
WLog_ERR(TAG, "Thread running, setting to detached state!");
WLog_DBG(TAG, "Thread running, setting to detached state!");
thread->detached = TRUE;
pthread_detach(thread->thread);
}