summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/asyncnotification.cxx4
-rw-r--r--comphelper/source/misc/numbers.cxx4
2 files changed, 2 insertions, 6 deletions
diff --git a/comphelper/source/misc/asyncnotification.cxx b/comphelper/source/misc/asyncnotification.cxx
index 9267444d6696..ba28772cd194 100644
--- a/comphelper/source/misc/asyncnotification.cxx
+++ b/comphelper/source/misc/asyncnotification.cxx
@@ -124,7 +124,6 @@ namespace comphelper
{
::osl::MutexGuard aGuard( m_xImpl->aMutex );
- OSL_TRACE( "AsyncEventNotifier(%p): adding %p", this, _rEvent.get() );
// remember this event
m_xImpl->aEvents.push_back( ProcessableEvent( _rEvent, _xProcessor ) );
@@ -149,9 +148,6 @@ namespace comphelper
{
aEvent = m_xImpl->aEvents.front();
m_xImpl->aEvents.pop_front();
- OSL_TRACE(
- "AsyncEventNotifier(%p): popping %p", this,
- aEvent.aEvent.get());
}
if (m_xImpl->aEvents.empty())
{
diff --git a/comphelper/source/misc/numbers.cxx b/comphelper/source/misc/numbers.cxx
index 2dd29cd2f3b7..fb964292d463 100644
--- a/comphelper/source/misc/numbers.cxx
+++ b/comphelper/source/misc/numbers.cxx
@@ -41,7 +41,7 @@ sal_Int16 getNumberFormatType(const css::uno::Reference<css::util::XNumberFormat
}
catch(...)
{
- OSL_TRACE("getNumberFormatType : invalid key! (maybe created with another formatter ?)");
+ SAL_WARN("comphelper", "getNumberFormatType : invalid key! (maybe created with another formatter ?)");
}
}
return nReturn;
@@ -72,7 +72,7 @@ css::uno::Any getNumberFormatDecimals(const css::uno::Reference<css::util::XNumb
}
catch(...)
{
- OSL_TRACE("getNumberFormatDecimals : invalid key! (may be created with another formatter ?)");
+ SAL_WARN("comphelper", "getNumberFormatDecimals : invalid key! (may be created with another formatter ?)");
}
}
return css::uno::makeAny((sal_Int16)0);