include/sal/log-areas.dox | 1 + sc/source/ui/operation/Operation.cxx | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-)
New commits: commit 2c483a1901a7a55bed9494cdc2ba02c0e2315cb9 Author: Tomaž Vajngerl <[email protected]> AuthorDate: Mon Feb 16 17:24:16 2026 +0900 Commit: Miklos Vajna <[email protected]> CommitDate: Tue Feb 17 08:43:07 2026 +0100 sc: Use "sc.op" for logging of operations It is easier to isolate the logging this way. Change-Id: I5ab65e30257c8c8d29ae75a223ff67cb0b41c4fd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/199448 Reviewed-by: Miklos Vajna <[email protected]> Tested-by: Jenkins CollaboraOffice <[email protected]> diff --git a/include/sal/log-areas.dox b/include/sal/log-areas.dox index 71e56879abb7..34219680d237 100644 --- a/include/sal/log-areas.dox +++ b/include/sal/log-areas.dox @@ -151,6 +151,7 @@ certain functionality. @li @c sc.lok.poshelper @li @c sc.opencl - OpenCL-related stuff in general @li @c sc.opencl.source - Generated OpenCL source code +@li @c sc.op @li @c sc.orcus @li @c sc.orcus.autofilter @li @c sc.orcus.condformat diff --git a/sc/source/ui/operation/Operation.cxx b/sc/source/ui/operation/Operation.cxx index 3995010d2ef7..e843393a50d4 100644 --- a/sc/source/ui/operation/Operation.cxx +++ b/sc/source/ui/operation/Operation.cxx @@ -179,11 +179,11 @@ bool Operation::checkSheetViewProtection() bool Operation::run() { - SAL_INFO("sc", + SAL_INFO("sc.op", "Running operation '" << SheetViewOperationsTester::operationName(meType) << "'."); bool bResult = runImplementation(); - SAL_INFO("sc", "Operation '" << SheetViewOperationsTester::operationName(meType) - << (bResult ? "' succeded." : "' failed.")); + SAL_INFO("sc.op", "Operation '" << SheetViewOperationsTester::operationName(meType) + << (bResult ? "' succeded." : "' failed.")); return bResult; } }
