summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2021-09-30 09:52:22 +0200
committerStephan Bergmann <sbergman@redhat.com>2021-09-30 12:25:34 +0200
commit348cb77fddd30944445e0c8eb4f005743b2b7542 (patch)
tree21a36d287bb8534f2e7295dc4b4ceb368c52c7fc
parent471a0e328cf66f8a288ef0306decf557362c13af (diff)
loplugin:sallogareas (clang-cl)
Change-Id: I6a529d2eb737d284bf1e9c1857680c33581f5e0e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122846 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r--include/sal/log-areas.dox1
-rw-r--r--sal/cppunittester/cppunittester.cxx2
-rw-r--r--winaccessibility/source/UAccCOM/AccTextBase.cxx2
3 files changed, 3 insertions, 2 deletions
diff --git a/include/sal/log-areas.dox b/include/sal/log-areas.dox
index b9c5945e8c1f..f880b9c28ef4 100644
--- a/include/sal/log-areas.dox
+++ b/include/sal/log-areas.dox
@@ -21,6 +21,7 @@ certain functionality.
@section SAL
@li @c sal.bootstrap - SAL bootstrap
+@li @c sal.cppunittester
@li @c sal.debug - SAL debugging functionality
@li @c sal.file - file system operations
@li @c sal.fileio - file I/O
diff --git a/sal/cppunittester/cppunittester.cxx b/sal/cppunittester/cppunittester.cxx
index 63567d681cfd..1e1d5e65f59e 100644
--- a/sal/cppunittester/cppunittester.cxx
+++ b/sal/cppunittester/cppunittester.cxx
@@ -582,7 +582,7 @@ static void AbortSignalHandler(int signal)
{
if (signal == SIGABRT) {
std::unique_ptr<sal::BacktraceState> bs = sal::backtrace_get(50);
- SAL_WARN("sal", "CAUGHT SIGABRT:\n" << sal::backtrace_to_string(bs.get()));
+ SAL_WARN("sal.cppunittester", "CAUGHT SIGABRT:\n" << sal::backtrace_to_string(bs.get()));
}
}
diff --git a/winaccessibility/source/UAccCOM/AccTextBase.cxx b/winaccessibility/source/UAccCOM/AccTextBase.cxx
index aef8e80b572f..5fb59edb494d 100644
--- a/winaccessibility/source/UAccCOM/AccTextBase.cxx
+++ b/winaccessibility/source/UAccCOM/AccTextBase.cxx
@@ -65,7 +65,7 @@ sal_Int16 lcl_matchIA2TextBoundaryType(IA2TextBoundaryType boundaryType)
break;
}
- SAL_WARN("winaccessibility", "Unmatched text boundary type: " << boundaryType);
+ SAL_WARN("iacc2", "Unmatched text boundary type: " << boundaryType);
return -1;
}
}