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

Julien Nabet serval2412 at yahoo.fr
Sat May 23 08:32:48 PDT 2015


 sc/source/core/tool/parclass.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit d813a3ca53504df145e96d85483091a1d0768073
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Sat May 23 17:31:22 2015 +0200

    SAL_TRACE doesn't exist
    
    Replace with SAL_INFO. But neither my local build nor TB complained, weird...
    
    Change-Id: I87f2164fc51e3fdf59f340a438a481c6ff5843e1

diff --git a/sc/source/core/tool/parclass.cxx b/sc/source/core/tool/parclass.cxx
index c93ffc4..40e1d3f 100644
--- a/sc/source/core/tool/parclass.cxx
+++ b/sc/source/core/tool/parclass.cxx
@@ -497,7 +497,7 @@ void ScParameterClassification::GenerateDocumentation()
         OpCode eOp = OpCode(i);
         if ( !xMap->getSymbol(eOp).isEmpty() )
         {
-            SAL_TRACE("sc.core", "GenerateDocumentation, env var name: " << aEnvVarName);
+            SAL_INFO("sc.core", "GenerateDocumentation, env var name: " << aEnvVarName);
             OStringBuffer aStr(OUStringToOString(xMap->getSymbol(eOp), RTL_TEXTENCODING_UTF8));
             aStr.append('(');
             formula::FormulaByteToken aToken( eOp);
@@ -605,7 +605,7 @@ void ScParameterClassification::GenerateDocumentation()
                 break;
                 default:;
             }
-            SAL_TRACE( "sc.core", "" << aStr.getStr() << "\n");
+            SAL_INFO( "sc.core", "" << aStr.getStr() << "\n");
         }
     }
     fflush( stdout);


More information about the Libreoffice-commits mailing list