loolwsd/LOOLBroker.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)
New commits: commit 2732d756be1eeb777af188a91669db99c78044fe Author: Tor Lillqvist <[email protected]> Date: Mon Apr 4 12:12:07 2016 +0300 LibreOfficeKit is not a process We call the process "loolkit". LibreOfficeKit is an API, and a 'class' in that API. diff --git a/loolwsd/LOOLBroker.cpp b/loolwsd/LOOLBroker.cpp index 91da688..8f69671 100644 --- a/loolwsd/LOOLBroker.cpp +++ b/loolwsd/LOOLBroker.cpp @@ -1129,10 +1129,9 @@ static void lokit_main(const std::string& childRoot, document.reset(); } - // Destroy LibreOfficeKit if (loKit) { - Log::debug("Destroying LibreOfficeKit."); + Log::debug("Destroying LibreOfficeKit instance."); loKit->pClass->destroy(loKit); } @@ -1247,7 +1246,7 @@ static int createLibreOfficeKit(const std::string& childRoot, return -1; } - Log::debug("Forking LibreOfficeKit."); + Log::debug("Forking a loolkit process."); Process::PID pid; if (!(pid = fork())) _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
