mirror of
https://github.com/debauchee/barrier.git
synced 2026-02-11 22:25:53 +08:00
Made log consistent #4745
This commit is contained in:
@@ -565,11 +565,11 @@ ServerProxy::setClipboard()
|
||||
clipboard.unmarshall(dataCached, 0);
|
||||
m_client->setClipboard(id, &clipboard);
|
||||
|
||||
LOG((CLOG_NOTIFY "Clipboard Transmission Complete: Clipboard is updated."));
|
||||
LOG((CLOG_NOTIFY "clipboard transmission complete"));
|
||||
}
|
||||
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));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -873,7 +873,7 @@ ServerProxy::fileChunkReceived()
|
||||
else if (result == kStart) {
|
||||
if (m_client->getDragFileList().size() > 0) {
|
||||
String filename = m_client->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()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user