Adapt to sal/log.hxx

Change-Id: Ife7840ec39de743a7dfaacb20c0871fbcd8195e7
This commit is contained in:
Stephan Bergmann 2014-03-25 11:37:03 +01:00
parent 351c4bcf83
commit 19d8bae111
2 changed files with 3 additions and 3 deletions

View File

@ -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 );
}

View File

@ -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