diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-13 22:52:01 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-13 22:52:01 +0000 |
commit | 41fd90bceab3de44d2b80157388e773b94265f7b (patch) | |
tree | bbd170a45c32d3ed220575adb635b2de0147078d /protocols/Twitter/chat.cpp | |
parent | f0e0f8df9afe935855724ae95e93093f04ca8e9a (diff) |
fixes for logging
git-svn-id: http://svn.miranda-ng.org/main/trunk@404 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Twitter/chat.cpp')
-rw-r--r-- | protocols/Twitter/chat.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Twitter/chat.cpp b/protocols/Twitter/chat.cpp index 9dda6790ec..d00261b41d 100644 --- a/protocols/Twitter/chat.cpp +++ b/protocols/Twitter/chat.cpp @@ -71,12 +71,12 @@ int TwitterProto::OnChatOutgoing(WPARAM wParam,LPARAM lParam) {
case GC_USER_MESSAGE: {
text = mir_t2a_cp(hook->ptszText,CP_UTF8);
- LOG (_T("**Chat - Outgoing message: %s", text));
+ LOG (_T("**Chat - Outgoing message: %s"), text);
std::string tweet(text);
replaceAll(tweet, "%%", "%"); // the chat plugin will turn "%" into "%%", so we have to change it back :/
- LOG (_T("**Chat - Outgoing message after replace: %s", tweet));
+ LOG (_T("**Chat - Outgoing message after replace: %s"), tweet);
char * varTweet;
varTweet = mir_utf8encode(tweet.c_str());
|