[Libreoffice-commits] core.git: configmgr/source

Jelle van der Waa jelle at vdwaa.nl
Tue Jul 23 01:27:48 PDT 2013


 configmgr/source/components.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 5d95193f85921863cc127b1a3aec5924ff693592
Author: Jelle van der Waa <jelle at vdwaa.nl>
Date:   Sun Jul 21 21:08:10 2013 +0200

    fdo#63690 - replace RTL_CONTEXT_ macros with SAL_INFO
    
    Change-Id: I9c2405f92aea75756a0fbac7844ff16319210be3
    Reviewed-on: https://gerrit.libreoffice.org/5014
    Reviewed-by: Fridrich Strba <fridrich at documentfoundation.org>
    Tested-by: Fridrich Strba <fridrich at documentfoundation.org>

diff --git a/configmgr/source/components.cxx b/configmgr/source/components.cxx
index fa1302a..068a73b 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()


More information about the Libreoffice-commits mailing list