summaryrefslogtreecommitdiff
path: root/protocols/FacebookRM/src/proto.cpp
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2013-10-11 17:12:43 +0000
committerRobert Pösel <robyer@seznam.cz>2013-10-11 17:12:43 +0000
commit08770934c167a28d64d8462b78410c43aee04348 (patch)
tree06d1fb0859aa7f4c667ea11d51d5724e2b31d05a /protocols/FacebookRM/src/proto.cpp
parent0932c0ac787bcdb792525423666d3e640cd2ec64 (diff)
Facebook: Cleanup also old LOG macro
git-svn-id: http://svn.miranda-ng.org/main/trunk@6446 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/proto.cpp')
-rw-r--r--protocols/FacebookRM/src/proto.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/FacebookRM/src/proto.cpp b/protocols/FacebookRM/src/proto.cpp
index ceaca0e8e3..0ffac08490 100644
--- a/protocols/FacebookRM/src/proto.cpp
+++ b/protocols/FacebookRM/src/proto.cpp
@@ -141,7 +141,7 @@ DWORD_PTR FacebookProto::GetCaps(int type, HANDLE hContact)
int FacebookProto::SetStatus(int new_status)
{
- LOG("===== Beginning SetStatus process");
+ debugLogA("===== Beginning SetStatus process");
// Routing statuses not supported by Facebook
switch (new_status)
@@ -163,12 +163,12 @@ int FacebookProto::SetStatus(int new_status)
}
if (new_status != ID_STATUS_OFFLINE && m_iStatus == ID_STATUS_CONNECTING) {
- LOG("===== Status is already connecting, no change");
+ debugLogA("===== Status is already connecting, no change");
return 0;
}
if (m_iStatus == m_iDesiredStatus) {
- LOG("===== Statuses are same, no change");
+ debugLogA("===== Statuses are same, no change");
return 0;
}