diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-12 16:35:04 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-12 16:35:04 +0000 |
commit | a5d4df47638c42d9bc3d5d126984d9e15e2e1678 (patch) | |
tree | 2f7a490799043e3bec7a0524ded4dba64f4b951a /protocols | |
parent | 1ab0a376457ebbbfd938640cadd869a04ec878c1 (diff) |
these debug prints aren't needed anymore
git-svn-id: http://svn.miranda-ng.org/main/trunk@9777 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/IcqOscarJ/src/icq_server.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/protocols/IcqOscarJ/src/icq_server.cpp b/protocols/IcqOscarJ/src/icq_server.cpp index 6a1aadeab3..dead1a431e 100644 --- a/protocols/IcqOscarJ/src/icq_server.cpp +++ b/protocols/IcqOscarJ/src/icq_server.cpp @@ -152,7 +152,6 @@ void __cdecl CIcqProto::ServerThread(serverthread_start_info *infoParam) NetLib_SafeCloseHandle(&info.hDirectBoundPort);
// disable auto info-update thread
- debugLogA("Stopping info update thread...");
icq_EnableUserLookup(FALSE);
if (m_iStatus != ID_STATUS_OFFLINE && m_iDesiredStatus != ID_STATUS_OFFLINE) {
@@ -166,19 +165,15 @@ void __cdecl CIcqProto::ServerThread(serverthread_start_info *infoParam) }
// signal keep-alive thread to stop
- debugLogA("Stopping keep-alive thread...");
StopKeepAlive(&info);
// Close all open DC connections
- debugLogA("Stopping direct connections...");
CloseContactDirectConns(NULL);
// Close avatar connection if any
- debugLogA("Stopping avatars thread...");
StopAvatarThread();
// Offline all contacts
- debugLogA("Setting offline status to contacts...");
for (MCONTACT hContact = db_find_first(m_szModuleName); hContact; hContact = db_find_next(hContact, m_szModuleName)) {
if (getContactStatus(hContact) == ID_STATUS_OFFLINE)
continue;
|