diff options
author | Robert Pösel <robyer@seznam.cz> | 2015-02-15 10:23:58 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2015-02-15 10:23:58 +0000 |
commit | 39492f39ace0b10ff2ee6c9d61c22f2ac7d4a839 (patch) | |
tree | 011564bfba9b1fa732ed829a2b9c2cac5b6b5822 /protocols/FacebookRM/src/json.cpp | |
parent | 88c7aa9f7d95fc17e44e0d37a7b35f620bf4ca0b (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/json.cpp')
-rw-r--r-- | protocols/FacebookRM/src/json.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/protocols/FacebookRM/src/json.cpp b/protocols/FacebookRM/src/json.cpp index cf715a9aba..5597baebff 100644 --- a/protocols/FacebookRM/src/json.cpp +++ b/protocols/FacebookRM/src/json.cpp @@ -283,8 +283,7 @@ bool ignore_duplicits(FacebookProto *proto, const std::string &mid, const std::s std::map<std::string, int>::iterator it = proto->facy.messages_ignore.find(mid); if (it != proto->facy.messages_ignore.end()) { - proto->debugLogA("????? Ignoring duplicit/sent message\n%s", text.c_str()); - + proto->debugLogA("??? Ignoring duplicit/sent message ID: %s", mid.c_str()); it->second++; // increase counter (for deleting it later) return true; } @@ -727,7 +726,7 @@ int facebook_json_parser::parse_messages(std::string *data, std::vector< faceboo JSONNODE *visibility = json_get(event_data, "visibility"); bool isVisible = (visibility != NULL) && json_as_bool(visibility); - proto->debugLogA(" Requested chat switch to %s", isVisible ? "Online" : "Offline"); + proto->debugLogA(" Requested chat switch to %s", isVisible ? "Online" : "Offline"); proto->SetStatus(isVisible ? ID_STATUS_ONLINE : ID_STATUS_INVISIBLE); } } |