summaryrefslogtreecommitdiff
path: root/package/source/xstor/oseekinstream.cxx
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2014-04-16 18:24:58 +0200
committerJan Holesovsky <kendy@collabora.com>2014-04-16 18:28:19 +0200
commita60d9aa7ce7d5c77798e7be1efce2afc05d97f85 (patch)
treed9d7f6f75e08afe6adeb36ed15444f73d0dd52ac /package/source/xstor/oseekinstream.cxx
parentccfc02f7691848284403d339ee17054169fbff1d (diff)
package: Turn own logging infra into SAL_INFO to reduce product bin size.
Change-Id: I81b4cf62cb6ae77ea35e7781ef5f464c28b44855
Diffstat (limited to 'package/source/xstor/oseekinstream.cxx')
-rw-r--r--package/source/xstor/oseekinstream.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/package/source/xstor/oseekinstream.cxx b/package/source/xstor/oseekinstream.cxx
index 7b16ee028a9c..813ff249cf6b 100644
--- a/package/source/xstor/oseekinstream.cxx
+++ b/package/source/xstor/oseekinstream.cxx
@@ -114,13 +114,13 @@ void SAL_CALL OInputSeekStream::seek( sal_Int64 location )
::osl::MutexGuard aGuard( m_rMutexRef->GetMutex() );
if ( m_bDisposed )
{
- ::package::StaticAddLog( OSL_LOG_PREFIX "Disposed!" );
+ SAL_INFO("package.xstor", OSL_LOG_PREFIX "Disposed!");
throw lang::DisposedException();
}
if ( !m_xSeekable.is() )
{
- ::package::StaticAddLog( OSL_LOG_PREFIX "No seekable!" );
+ SAL_INFO("package.xstor", OSL_LOG_PREFIX "No seekable!");
throw uno::RuntimeException();
}
@@ -134,13 +134,13 @@ sal_Int64 SAL_CALL OInputSeekStream::getPosition()
::osl::MutexGuard aGuard( m_rMutexRef->GetMutex() );
if ( m_bDisposed )
{
- ::package::StaticAddLog( OSL_LOG_PREFIX "Disposed!" );
+ SAL_INFO("package.xstor", OSL_LOG_PREFIX "Disposed!");
throw lang::DisposedException();
}
if ( !m_xSeekable.is() )
{
- ::package::StaticAddLog( OSL_LOG_PREFIX "No seekable!" );
+ SAL_INFO("package.xstor", OSL_LOG_PREFIX "No seekable!");
throw uno::RuntimeException();
}
@@ -154,13 +154,13 @@ sal_Int64 SAL_CALL OInputSeekStream::getLength()
::osl::MutexGuard aGuard( m_rMutexRef->GetMutex() );
if ( m_bDisposed )
{
- ::package::StaticAddLog( OSL_LOG_PREFIX "Disposed!" );
+ SAL_INFO("package.xstor", OSL_LOG_PREFIX "Disposed!");
throw lang::DisposedException();
}
if ( !m_xSeekable.is() )
{
- ::package::StaticAddLog( OSL_LOG_PREFIX "No seekable!" );
+ SAL_INFO("package.xstor", OSL_LOG_PREFIX "No seekable!");
throw uno::RuntimeException();
}