diff options
Diffstat (limited to 'protocols/FacebookRM/src/avatars.cpp')
-rw-r--r-- | protocols/FacebookRM/src/avatars.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/protocols/FacebookRM/src/avatars.cpp b/protocols/FacebookRM/src/avatars.cpp index a97a9f0a9e..91a1591a05 100644 --- a/protocols/FacebookRM/src/avatars.cpp +++ b/protocols/FacebookRM/src/avatars.cpp @@ -89,7 +89,7 @@ void FacebookProto::UpdateAvatarWorker(void *) {
HANDLE nlc = NULL;
- debugLogA("***** UpdateAvatarWorker");
+ debugLogA("*** UpdateAvatarWorker");
std::string params = getBool(FACEBOOK_KEY_BIG_AVATARS, DEFAULT_BIG_AVATARS) ? "?width=200&height=200" : "?width=80&height=80";
@@ -101,13 +101,13 @@ void FacebookProto::UpdateAvatarWorker(void *) if (Miranda_Terminated())
{
- debugLogA("***** Terminating avatar update early: %s", url.c_str());
+ debugLogA("*** Terminating avatar update early: %s", url.c_str());
break;
}
if (GetDbAvatarInfo(ai, &url))
{
- debugLogA("***** Updating avatar: %s", url.c_str());
+ debugLogA("*** Updating avatar: %s", url.c_str());
bool success = facy.save_url(url + params, ai.filename, nlc);
if (ai.hContact)
@@ -187,7 +187,7 @@ INT_PTR FacebookProto::GetAvatarInfo(WPARAM wParam, LPARAM lParam) if (needLoad)
{
- debugLogA("***** Starting avatar request thread for %s", _T2A(AI->filename));
+ debugLogA("*** Starting avatar request thread for %s", _T2A(AI->filename));
ScopedLock s(avatar_lock_);
if (std::find(avatar_queue.begin(), avatar_queue.end(), AI->hContact) == avatar_queue.end())
@@ -208,7 +208,7 @@ INT_PTR FacebookProto::GetAvatarInfo(WPARAM wParam, LPARAM lParam) INT_PTR FacebookProto::GetMyAvatar(WPARAM wParam, LPARAM lParam)
{
- debugLogA("***** GetMyAvatar");
+ debugLogA("*** GetMyAvatar");
if (!wParam || !lParam)
return -3;
|