these used to OSL_TRACE, quiten them to SAL_INFO
Change-Id: Iec429b986a55a847baceb2e84752a380c6db831a
This commit is contained in:
parent
5a5cd0ac64
commit
ef30635585
2 changed files with 5 additions and 7 deletions
|
@ -589,15 +589,13 @@ static void SAL_CALL typelib_callback(
|
|||
*ppRet = createCTD( access, xTD );
|
||||
}
|
||||
}
|
||||
catch (container::NoSuchElementException & exc)
|
||||
catch (const container::NoSuchElementException & exc)
|
||||
{
|
||||
(void) exc; // avoid warning about unused variable
|
||||
SAL_WARN("cppuhelper", "typelibrary type not available: " << exc.Message );
|
||||
SAL_INFO("cppuhelper", "typelibrary type not available: " << exc.Message );
|
||||
}
|
||||
catch (Exception & exc)
|
||||
catch (const Exception & exc)
|
||||
{
|
||||
(void) exc; // avoid warning about unused variable
|
||||
SAL_WARN("cppuhelper", exc.Message );
|
||||
SAL_INFO("cppuhelper", exc.Message );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -560,7 +560,7 @@ void SfxDispatcher::Pop(SfxShell& rShell, SfxDispatcherPopFlags nMode)
|
|||
xImp->aToDoStack.push_front( SfxToDo_Impl(bPush, bDelete, bUntil, rShell) );
|
||||
if (xImp->bFlushed)
|
||||
{
|
||||
SAL_WARN("sfx.control", "Unflushed dispatcher!");
|
||||
SAL_INFO("sfx.control", "Unflushed dispatcher!");
|
||||
xImp->bFlushed = false;
|
||||
xImp->bUpdated = false;
|
||||
|
||||
|
|
Loading…
Reference in a new issue