summaryrefslogtreecommitdiff
path: root/desktop/source/app
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-05 11:32:31 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-05 11:32:31 +0200
commite1193272cd442051a6c1623a46fadf02ea0789a5 (patch)
tree17e8a0d0b43c60ef99a550019c6b09a99d126dd0 /desktop/source/app
parenta61b9a87029dd23cdb5ca588f69a669d9689a11a (diff)
Consistently use "desktop.app" log area here
Change-Id: Ie31f1ea788cc2b8b0d6c672d93df84adb3326a05
Diffstat (limited to 'desktop/source/app')
-rw-r--r--desktop/source/app/officeipcthread.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/source/app/officeipcthread.cxx b/desktop/source/app/officeipcthread.cxx
index a972602e45f6..460d2c35d536 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;
}
}