include line breaks, things with the wrong character encoding
and god knows what. Just print the size of the data instead.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5133
3789f03b-4d11-0410-bbf8-
ca57d06f2519
ret = fl_utf8froma(buffer, size, str, len);
assert(ret < size);
- vlog.debug("Got clipboard data: '%s'", buffer);
+ vlog.debug("Got clipboard data (%d bytes)", strlen(buffer));
// RFB doesn't have separate selection and clipboard concepts, so we
// dump the data into both variants.
Fl::event_length() + 1);
assert(ret < (Fl::event_length() + 1));
- vlog.debug("Sending clipboard data: '%s'", buffer);
+ vlog.debug("Sending clipboard data (%d bytes)", strlen(buffer));
try {
cc->writer()->clientCutText(buffer, ret);