Kaydet (Commit) 3d9b364b authored tarafından Jan Holesovsky's avatar Jan Holesovsky Kaydeden (comit) Miklos Vajna

It is not necessary to be _that_ verbose.

Change-Id: Ie7685beae20df8b3798070135fad529cde3604a9
üst 8ca64909
...@@ -281,7 +281,6 @@ sal_uInt64 FileHandle_Impl::getPos() const ...@@ -281,7 +281,6 @@ sal_uInt64 FileHandle_Impl::getPos() const
oslFileError FileHandle_Impl::setPos (sal_uInt64 uPos) oslFileError FileHandle_Impl::setPos (sal_uInt64 uPos)
{ {
SAL_INFO("sal.file", "FileHandle_Impl::setPos(" << m_fd << ", " << getPos() << ") => " << uPos);
m_fileptr = sal::static_int_cast< off_t >(uPos); m_fileptr = sal::static_int_cast< off_t >(uPos);
return osl_File_E_None; return osl_File_E_None;
} }
...@@ -377,7 +376,6 @@ oslFileError FileHandle_Impl::readAt ( ...@@ -377,7 +376,6 @@ oslFileError FileHandle_Impl::readAt (
if (-1 == nBytes) if (-1 == nBytes)
return oslTranslateFileError (OSL_FET_ERROR, errno); return oslTranslateFileError (OSL_FET_ERROR, errno);
SAL_INFO("sal.file", "FileHandle_Impl::readAt(" << m_fd << ", " << nOffset << ", " << nBytes << ")");
*pBytesRead = nBytes; *pBytesRead = nBytes;
return osl_File_E_None; return osl_File_E_None;
} }
...@@ -400,7 +398,6 @@ oslFileError FileHandle_Impl::writeAt ( ...@@ -400,7 +398,6 @@ oslFileError FileHandle_Impl::writeAt (
if (-1 == nBytes) if (-1 == nBytes)
return oslTranslateFileError (OSL_FET_ERROR, errno); return oslTranslateFileError (OSL_FET_ERROR, errno);
SAL_INFO("sal.file", "FileHandle_Impl::writeAt(" << m_fd << ", " << nOffset << ", " << nBytes << ")");
m_size = std::max (m_size, sal::static_int_cast< sal_uInt64 >(nOffset + nBytes)); m_size = std::max (m_size, sal::static_int_cast< sal_uInt64 >(nOffset + nBytes));
*pBytesWritten = nBytes; *pBytesWritten = nBytes;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment