From 39492f39ace0b10ff2ee6c9d61c22f2ac7d4a839 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Sun, 15 Feb 2015 10:23:58 +0000 Subject: 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 --- protocols/FacebookRM/src/captcha.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'protocols/FacebookRM/src/captcha.cpp') diff --git a/protocols/FacebookRM/src/captcha.cpp b/protocols/FacebookRM/src/captcha.cpp index d5f33a4479..355cd7acd1 100644 --- a/protocols/FacebookRM/src/captcha.cpp +++ b/protocols/FacebookRM/src/captcha.cpp @@ -105,7 +105,7 @@ static INT_PTR CALLBACK CaptchaFormDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam bool FacebookProto::RunCaptchaForm(std::string captchaUrl, std::string &result) { - debugLogA("RunCaptchaForm: reading picture from %s", captchaUrl.c_str()); + debugLogA(" RunCaptchaForm: reading picture from %s", captchaUrl.c_str()); result.clear(); NETLIBHTTPREQUEST req = { sizeof(req) }; @@ -118,7 +118,7 @@ bool FacebookProto::RunCaptchaForm(std::string captchaUrl, std::string &result) return false; if (reply->resultCode != HTTP_CODE_OK) { - debugLogA("RunCaptchaForm: failed with code %d", reply->resultCode); + debugLogA(" RunCaptchaForm: failed with code %d", reply->resultCode); return false; } @@ -138,7 +138,7 @@ bool FacebookProto::RunCaptchaForm(std::string captchaUrl, std::string &result) if (res == 0) return false; - debugLogA("RunCaptchaForm: user entered text %s", param.Result); + debugLogA(" RunCaptchaForm: user entered text %s", param.Result); result = param.Result; return true; } -- cgit v1.2.3