mirror of
https://github.com/debauchee/barrier.git
synced 2026-07-04 10:56:26 +08:00
Added full stop for notification #4745
This commit is contained in:
@@ -85,7 +85,7 @@ ClientProxy1_5::fileChunkReceived()
|
||||
}
|
||||
else if (result == kStart) {
|
||||
String filename = server->getDragFileList().at(0).getFilename();
|
||||
LOG((CLOG_NOTIFY "File Transmission Started: Start receiving %s", filename.c_str()));
|
||||
LOG((CLOG_NOTIFY "File Transmission Started: Start receiving %s.", filename.c_str()));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -91,11 +91,11 @@ ClientProxy1_6::recvClipboard()
|
||||
info->m_sequenceNumber = seq;
|
||||
m_events->addEvent(Event(m_events->forClipboard().clipboardChanged(),
|
||||
getEventTarget(), info));
|
||||
LOG((CLOG_NOTIFY "Clipboard Transmission Complete: Clipboard is updated"));
|
||||
LOG((CLOG_NOTIFY "Clipboard Transmission Complete: Clipboard is updated."));
|
||||
}
|
||||
else if (r == kStart) {
|
||||
size_t size = ClipboardChunk::getExpectedSize();
|
||||
LOG((CLOG_NOTIFY "Clipboard Transmission Started: Start receiving %u bytes of clipboard data", size));
|
||||
LOG((CLOG_NOTIFY "Clipboard Transmission Started: Start receiving %u bytes of clipboard data.", size));
|
||||
}
|
||||
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user