summaryrefslogtreecommitdiff
path: root/unodevtools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-08 16:12:01 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-08 16:12:01 +0100
commitf9ddda353851b019c2eb8a427ee9f8042f8107b0 (patch)
tree49f35f9d96fc26727a673b6fecab58032fafa304 /unodevtools
parent2ed1b3e0cdd74a6bb78c666375d0f4af2218b5db (diff)
Remove ornamental noise
Change-Id: Ic8d33142b6bd7d271e94ec93661f0260bb2ea6e2
Diffstat (limited to 'unodevtools')
-rw-r--r--unodevtools/source/unodevtools/options.cxx6
1 files changed, 3 insertions, 3 deletions
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;