From 3d9b364b567a9046ac4530297c7e922ae9bf0596 Mon Sep 17 00:00:00 2001 From: Jan Holesovsky Date: Mon, 9 Feb 2015 10:28:54 +0100 Subject: It is not necessary to be _that_ verbose. Change-Id: Ie7685beae20df8b3798070135fad529cde3604a9 --- sal/osl/unx/file.cxx | 3 --- 1 file changed, 3 deletions(-) (limited to 'sal/osl') 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; -- cgit