summaryrefslogtreecommitdiff
path: root/protocols/FacebookRM/src/contacts.cpp
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2015-02-15 10:23:58 +0000
committerRobert Pösel <robyer@seznam.cz>2015-02-15 10:23:58 +0000
commit39492f39ace0b10ff2ee6c9d61c22f2ac7d4a839 (patch)
tree011564bfba9b1fa732ed829a2b9c2cac5b6b5822 /protocols/FacebookRM/src/contacts.cpp
parent88c7aa9f7d95fc17e44e0d37a7b35f620bf4ca0b (diff)
Facebook: Cleanup logging a bit, don't log that much personal info, make it much smaller size
Remove useless stuff (like cookies or status changes), don't log personal like message texts (there is still some personal info like user name etc.), and some other changes... git-svn-id: http://svn.miranda-ng.org/main/trunk@12118 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/contacts.cpp')
-rw-r--r--protocols/FacebookRM/src/contacts.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/protocols/FacebookRM/src/contacts.cpp b/protocols/FacebookRM/src/contacts.cpp
index 7a8e0849a7..fdc8f5e2a0 100644
--- a/protocols/FacebookRM/src/contacts.cpp
+++ b/protocols/FacebookRM/src/contacts.cpp
@@ -192,11 +192,11 @@ std::string FacebookProto::ThreadIDToContactID(const std::string &thread_id)
if (!user_id.empty())
facy.thread_id_to_user_id.insert(std::make_pair(thread_id, user_id));
- debugLogA("***** Thread info processed");
+ debugLogA("*** Thread info processed");
CODE_BLOCK_CATCH
- debugLogA("***** Error processing thread info: %s", e.what());
+ debugLogA("*** Error processing thread info: %s", e.what());
CODE_BLOCK_END
}
@@ -221,11 +221,11 @@ void FacebookProto::LoadContactInfo(facebook_user* fbu)
p->parse_user_info(&resp.data, fbu);
delete p;
- debugLogA("***** Contact thread info processed");
+ debugLogA("*** Contact thread info processed");
CODE_BLOCK_CATCH
- debugLogA("***** Error processing contact thread info: %s", e.what());
+ debugLogA("*** Error processing contact thread info: %s", e.what());
CODE_BLOCK_END
}
@@ -325,11 +325,11 @@ void FacebookProto::LoadChatInfo(facebook_chatroom *fbc)
//ReceiveMessages(messages, true); // don't let it fall into infinite cycle, solve it somehow...
- debugLogA("***** Chat thread info processed");
+ debugLogA("*** Chat thread info processed");
CODE_BLOCK_CATCH
- debugLogA("***** Error processing chat thread info: %s", e.what());
+ debugLogA("*** Error processing chat thread info: %s", e.what());
CODE_BLOCK_END