summaryrefslogtreecommitdiff
path: root/sal/osl
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2015-02-09 10:28:54 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-02-16 09:20:45 +0100
commit3d9b364b567a9046ac4530297c7e922ae9bf0596 (patch)
treebd7119b904ca225aa4286fe25a20f75971a32420 /sal/osl
parent8ca64909836d96eb7c39d488f7bc7521cd56508b (diff)
It is not necessary to be _that_ verbose.
Change-Id: Ie7685beae20df8b3798070135fad529cde3604a9
Diffstat (limited to 'sal/osl')
-rw-r--r--sal/osl/unx/file.cxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/sal/osl/unx/file.cxx b/sal/osl/unx/file.cxx
index 564784f1f7f5..dff8579cb76f 100644
--- a/sal/osl/unx/file.cxx
+++ b/sal/osl/unx/file.cxx
@@ -281,7 +281,6 @@ sal_uInt64 FileHandle_Impl::getPos() const
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);
return osl_File_E_None;
}
@@ -377,7 +376,6 @@ oslFileError FileHandle_Impl::readAt (
if (-1 == nBytes)
return oslTranslateFileError (OSL_FET_ERROR, errno);
- SAL_INFO("sal.file", "FileHandle_Impl::readAt(" << m_fd << ", " << nOffset << ", " << nBytes << ")");
*pBytesRead = nBytes;
return osl_File_E_None;
}
@@ -400,7 +398,6 @@ oslFileError FileHandle_Impl::writeAt (
if (-1 == nBytes)
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));
*pBytesWritten = nBytes;