diff options
author | Sergey Bolhovskoy <elzorfox@ya.ru> | 2015-02-16 17:37:33 +0000 |
---|---|---|
committer | Sergey Bolhovskoy <elzorfox@ya.ru> | 2015-02-16 17:37:33 +0000 |
commit | 99be3b7b1044434a522bcf2b5bbe2d2c5ff4eacc (patch) | |
tree | 95c9814e4193db6fa500b9539f02861c3f172229 | |
parent | 04c3d89a5cb462302d922888c0e203957229178a (diff) |
VKontakte: remove unneeded debuglines
git-svn-id: http://svn.miranda-ng.org/main/trunk@12146 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | protocols/VKontakte/src/vk_queue.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/protocols/VKontakte/src/vk_queue.cpp b/protocols/VKontakte/src/vk_queue.cpp index a4c7b59ee4..aa7d932685 100644 --- a/protocols/VKontakte/src/vk_queue.cpp +++ b/protocols/VKontakte/src/vk_queue.cpp @@ -110,16 +110,14 @@ void CVkProto::WorkerThread(void*) << VER_API)->m_bApiReq = false;
}
- while (true) {
- debugLogA("CVkProto::WorkerThread: while(1)");
+ while (true) {
WaitForSingleObject(m_evRequestsQueue, 1000);
if (m_bTerminated)
break;
AsyncHttpRequest *pReq;
bool need_sleep = false;
- while (true) {
- debugLogA("CVkProto::WorkerThread: while(2)");
+ while (true) {
{
mir_cslock lck(m_csRequestsQueue);
if (m_arRequestsQueue.getCount() == 0)
|