diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-12 16:31:57 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-13 06:12:00 +0000 |
commit | c3586b684c58e06cd80dea87d7681354acfec80b (patch) | |
tree | 09e1b3caab55f1c9ecd4c2559250b42892fd5ee7 /comphelper | |
parent | a005fbeddc4e615cfff56a9bd84355f8d42c1c8c (diff) |
OSL_TRACE->SAL in chart2..oox
Change-Id: I133a6441824bfbefcfcda130119b5c5d706f86b2
Reviewed-on: https://gerrit.libreoffice.org/31907
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/asyncnotification.cxx | 4 | ||||
-rw-r--r-- | comphelper/source/misc/numbers.cxx | 4 |
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); |