From f9ddda353851b019c2eb8a427ee9f8042f8107b0 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 8 Mar 2016 16:12:01 +0100 Subject: Remove ornamental noise Change-Id: Ic8d33142b6bd7d271e94ec93661f0260bb2ea6e2 --- unodevtools/source/unodevtools/options.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'unodevtools') diff --git a/unodevtools/source/unodevtools/options.cxx b/unodevtools/source/unodevtools/options.cxx index fbbca04bbeda..47a49e552563 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; -- cgit