diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-25 11:37:03 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-25 16:17:08 +0100 |
commit | 19d8bae1111a5bb366cb63f640cdebbfb93fb7e1 (patch) | |
tree | 17a953a5891800aa533e12698b00af64805eac6b | |
parent | 351c4bcf83983d8e08a5bf174e0b274bc2c0085a (diff) |
Adapt to sal/log.hxx
Change-Id: Ife7840ec39de743a7dfaacb20c0871fbcd8195e7
-rw-r--r-- | include/svl/filerec.hxx | 2 | ||||
-rw-r--r-- | svl/source/filerec/filerec.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/svl/filerec.hxx b/include/svl/filerec.hxx index e67bdb86bb42..637dc7c8e9de 100644 --- a/include/svl/filerec.hxx +++ b/include/svl/filerec.hxx @@ -585,7 +585,7 @@ inline SfxMiniRecordWriter::SfxMiniRecordWriter( SvStream* pStream, sal_uInt8 nT _nPreTag( nTag ) { DBG_ASSERT( _nPreTag != 0xFF, "invalid Tag" ); - DBG( DbgOutf( "SfxFileRec: writing record to %ul", pStream->Tell() ) ); + SAL_INFO("svl", "SfxFileRec: writing record to " << pStream->Tell()); pStream->SeekRel( + SFX_REC_HEADERSIZE_MINI ); } diff --git a/svl/source/filerec/filerec.cxx b/svl/source/filerec/filerec.cxx index 5d397ea0fd2f..6ddb964455f0 100644 --- a/svl/source/filerec/filerec.cxx +++ b/svl/source/filerec/filerec.cxx @@ -199,7 +199,7 @@ SfxMiniRecordReader::SfxMiniRecordReader while(true) { // Header lesen - DBG( DbgOutf( "SfxFileRec: searching record at %ul", pStream->Tell() ) ); + SAL_INFO("svl", "SfxFileRec: searching record at " << pStream->Tell()); sal_uInt32 nHeader; pStream->ReadUInt32( nHeader ); @@ -307,7 +307,7 @@ bool SfxSingleRecordReader::FindHeader_Impl { // Header lesen sal_uInt32 nHeader; - DBG( DbgOutf( "SfxFileRec: searching record at %ul", _pStream->Tell() ) ); + SAL_INFO("svl", "SfxFileRec: searching record at " << _pStream->Tell()); _pStream->ReadUInt32( nHeader ); if ( !SetHeader_Impl( nHeader ) ) // EOR => Such-Schleife abbreichen |