[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-2-1' - wsd/ClientSession.cpp

Ashod Nakashian ashod.nakashian at collabora.co.uk
Tue Apr 18 10:01:19 UTC 2017


 wsd/ClientSession.cpp |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 9b88a264a17ef6863705feeb968df686cd04e523
Author: Ashod Nakashian <ashod.nakashian at collabora.co.uk>
Date:   Sun Apr 16 22:58:34 2017 -0400

    wsd: logs
    
    Change-Id: I43f8e3732c6948c8214b21a506cb2e5ba56bd2ad
    Reviewed-on: https://gerrit.libreoffice.org/36599
    Reviewed-by: Ashod Nakashian <ashnakash at gmail.com>
    Tested-by: Ashod Nakashian <ashnakash at gmail.com>
    (cherry picked from commit 651e462ef0ef89cabf61863be9e766caa5f11d59)
    Reviewed-on: https://gerrit.libreoffice.org/36609
    Reviewed-by: Jan Holesovsky <kendy at collabora.com>
    Tested-by: Jan Holesovsky <kendy at collabora.com>

diff --git a/wsd/ClientSession.cpp b/wsd/ClientSession.cpp
index d1140668..414f8b94 100644
--- a/wsd/ClientSession.cpp
+++ b/wsd/ClientSession.cpp
@@ -60,7 +60,7 @@ SocketHandlerInterface::SocketOwnership ClientSession::handleIncomingMessage()
 
 bool ClientSession::_handleInput(const char *buffer, int length)
 {
-    LOG_TRC(getName() << ": handling [" << getAbbreviatedMessage(buffer, length) << "].");
+    LOG_TRC(getName() << ": handling incoming [" << getAbbreviatedMessage(buffer, length) << "].");
     const std::string firstLine = getFirstLine(buffer, length);
     const auto tokens = LOOLProtocol::tokenize(firstLine.data(), firstLine.size());
 
@@ -486,7 +486,7 @@ bool ClientSession::handleKitToClientMessage(const char* buffer, const int lengt
 {
     const auto payload = std::make_shared<Message>(buffer, length, Message::Dir::Out);
 
-    LOG_TRC(getName() + ": handling [" << payload->abbr() << "].");
+    LOG_TRC(getName() + ": handling kit-to-client [" << payload->abbr() << "].");
     const std::string& firstLine = payload->firstLine();
 
     const auto docBroker = _docBroker.lock();


More information about the Libreoffice-commits mailing list