Added send clipboard finish log #4601

This commit is contained in:
Jerry (Xinyu Hou) 2015-05-19 13:51:13 -07:00
parent 00ceda55dc
commit c032091dd5
1 changed files with 3 additions and 1 deletions

View File

@ -69,9 +69,11 @@ ClientProxy1_6::setClipboard(ClipboardID id, const IClipboard* clipboard)
String data = m_clipboard[id].m_clipboard.marshall();
size_t size = data.size();
LOG((CLOG_DEBUG "sending clipboard %d to \"%s\" size=%d", id, getName().c_str(), size));
LOG((CLOG_DEBUG "sending clipboard %d to \"%s\"", id, getName().c_str()));
StreamChunker::sendClipboard(data, size, id, 0, m_events, this);
LOG((CLOG_DEBUG "sent clipboard size=%d", size));
}
}