summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}
}