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

Stephan Bergmann sbergman at redhat.com
Tue Mar 8 15:12:28 UTC 2016


 unodevtools/source/unodevtools/options.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit f9ddda353851b019c2eb8a427ee9f8042f8107b0
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Mar 8 16:12:01 2016 +0100

    Remove ornamental noise
    
    Change-Id: Ic8d33142b6bd7d271e94ec93661f0260bb2ea6e2

diff --git a/unodevtools/source/unodevtools/options.cxx b/unodevtools/source/unodevtools/options.cxx
index fbbca04..47a49e5 100644
--- a/unodevtools/source/unodevtools/options.cxx
+++ b/unodevtools/source/unodevtools/options.cxx
@@ -50,13 +50,13 @@ bool readOption( OUString * pValue, const sal_Char * pOpt,
             throw CannotDumpException(
                 "incomplete option \"-" + aOpt + "\" given!");
         } else {
-            SAL_INFO("unodevtools", "> identified option -" << pOpt << " = " << *pValue);
+            SAL_INFO("unodevtools", "identified option -" << pOpt << " = " << *pValue);
             ++(*pnIndex);
             return true;
         }
     } else if (aArg.indexOf(aOpt) == 1) {
         *pValue = aArg.copy(1 + aOpt.getLength());
-        SAL_INFO("unodevtools", "> identified option -" << pOpt << " = " << *pValue);
+        SAL_INFO("unodevtools", "identified option -" << pOpt << " = " << *pValue);
         ++(*pnIndex);
 
         return true;
@@ -75,7 +75,7 @@ bool readOption( sal_Bool * pbOpt, const sal_Char * pOpt,
     {
         ++(*pnIndex);
         *pbOpt = sal_True;
-        SAL_INFO("unodevtools", "> identified option --" << pOpt);
+        SAL_INFO("unodevtools", "identified option --" << pOpt);
         return true;
     }
     return false;


More information about the Libreoffice-commits mailing list