[Libreoffice-commits] core.git: desktop/source
Stephan Bergmann
sbergman at redhat.com
Tue Apr 5 09:32:59 UTC 2016
desktop/source/app/officeipcthread.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit e1193272cd442051a6c1623a46fadf02ea0789a5
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Tue Apr 5 11:32:31 2016 +0200
Consistently use "desktop.app" log area here
Change-Id: Ie31f1ea788cc2b8b0d6c672d93df84adb3326a05
diff --git a/desktop/source/app/officeipcthread.cxx b/desktop/source/app/officeipcthread.cxx
index a972602..460d2c3 100644
--- a/desktop/source/app/officeipcthread.cxx
+++ b/desktop/source/app/officeipcthread.cxx
@@ -865,7 +865,7 @@ RequestHandler::Status PipeIpcThread::enable(rtl::Reference<IpcThread> * thread)
sal_Int32 n = aStreamPipe.write(
aArguments.getStr(), aArguments.getLength());
if (n != aArguments.getLength()) {
- SAL_INFO("desktop", "short write: " << n);
+ SAL_INFO("desktop.app", "short write: " << n);
return RequestHandler::IPC_STATUS_BOOTSTRAP_ERROR;
}
@@ -1177,7 +1177,7 @@ void PipeIpcThread::execute()
SEND_ARGUMENTS, SAL_N_ELEMENTS(SEND_ARGUMENTS));
// incl. terminating NUL
if (n != SAL_N_ELEMENTS(SEND_ARGUMENTS)) {
- SAL_WARN("desktop", "short write: " << n);
+ SAL_WARN("desktop.app", "short write: " << n);
continue;
}
@@ -1202,7 +1202,7 @@ void PipeIpcThread::execute()
PROCESSING_DONE, SAL_N_ELEMENTS(PROCESSING_DONE));
// incl. terminating NUL
if (n != SAL_N_ELEMENTS(PROCESSING_DONE)) {
- SAL_WARN("desktop", "short write: " << n);
+ SAL_WARN("desktop.app", "short write: " << n);
continue;
}
}
More information about the Libreoffice-commits
mailing list