Kaydet (Commit) f9ddda35 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Remove ornamental noise

Change-Id: Ic8d33142b6bd7d271e94ec93661f0260bb2ea6e2
üst 2ed1b3e0
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment