summaryrefslogtreecommitdiff
path: root/kit
diff options
context:
space:
mode:
authorAshod Nakashian <ashod.nakashian@collabora.co.uk>2019-09-29 23:32:45 -0400
committerMichael Meeks <michael.meeks@collabora.com>2019-10-28 10:48:01 +0100
commita4a4d656322f69c9f7c6b5ac54f8c8baeacc5a86 (patch)
tree1579e90c7d35104f74f35e31ffe422149f123895 /kit
parentae8d28478b11b9228201f5157038c7632dc0086f (diff)
wsd: logging improvements
Always log when we set the termination flag so we can trace how (and implicitly why) we terminated. In practice trace logging is not enabled, so a key event such as termination should be logged at info level. Reviewed-on: https://gerrit.libreoffice.org/80324 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com> (cherry picked from commit 3f8d516e1399df687c2935fc551b171cbd850b7b) Change-Id: Id6615181c81ea56777f44b551b39925065b0e578 Reviewed-on: https://gerrit.libreoffice.org/81562 Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'kit')
-rw-r--r--kit/Kit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kit/Kit.cpp b/kit/Kit.cpp
index 4c59b8d79..d6d255bf1 100644
--- a/kit/Kit.cpp
+++ b/kit/Kit.cpp
@@ -2141,7 +2141,7 @@ protected:
}
else if (tokens[0] == "exit")
{
- LOG_TRC("Setting TerminationFlag due to 'exit' command from parent.");
+ LOG_INF("Setting TerminationFlag due to 'exit' command from parent.");
SigUtil::getTerminationFlag() = true;
document.reset();
}