summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2013-07-21 21:08:10 +0200
committerFridrich Strba <fridrich@documentfoundation.org>2013-07-23 08:27:29 +0000
commit5d95193f85921863cc127b1a3aec5924ff693592 (patch)
tree4bc5c9ff8ac3649d7232afba214698b3be7ee1b5 /configmgr
parent19a6c484c3af376416398e78ac29db5aa9a235ce (diff)
fdo#63690 - replace RTL_CONTEXT_ macros with SAL_INFO
Change-Id: I9c2405f92aea75756a0fbac7844ff16319210be3 Reviewed-on: https://gerrit.libreoffice.org/5014 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/components.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/configmgr/source/components.cxx b/configmgr/source/components.cxx
index fa1302a4eed4..068a73b543fb 100644
--- a/configmgr/source/components.cxx
+++ b/configmgr/source/components.cxx
@@ -479,7 +479,7 @@ Components::Components(
OUString conf(
expand(
OUString("${CONFIGURATION_LAYERS}")));
- RTL_LOGFILE_TRACE("configmgr : begin parsing");
+ SAL_INFO( "configmgr", "configmgr : begin parsing" );
int layer = 0;
for (sal_Int32 i = 0;;) {
while (i != conf.getLength() && conf[i] == ' ') {
@@ -561,7 +561,7 @@ Components::Components(
}
i = n;
}
- RTL_LOGFILE_TRACE("configmgr : end parsing");
+ SAL_INFO( "configmgr", "configmgr : end parsing" );
}
Components::~Components()