diff options
author | Jelle van der Waa <jelle@vdwaa.nl> | 2013-07-23 22:26:05 +0200 |
---|---|---|
committer | Fridrich Strba <fridrich@documentfoundation.org> | 2013-07-23 21:26:31 +0000 |
commit | 7e3fdd1fdcd2dbcbd87a88d19a781e845f7d0fca (patch) | |
tree | 733d6c2afdab66329a707c18242c24b0a14751df /package | |
parent | 689363662cc81fcf629850fa0b002577cc61e97d (diff) |
fdo#63690 - replace RTL_CONTEXT_ macros with SAL_INFO
Change-Id: I595c10b9c3df8ea487d9fde0a7910ba0bca0ab43
Reviewed-on: https://gerrit.libreoffice.org/5059
Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org>
Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'package')
-rw-r--r-- | package/source/zippackage/ZipPackage.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/package/source/zippackage/ZipPackage.cxx b/package/source/zippackage/ZipPackage.cxx index db247486a29e..5f42210e637b 100644 --- a/package/source/zippackage/ZipPackage.cxx +++ b/package/source/zippackage/ZipPackage.cxx @@ -62,7 +62,6 @@ #include <cppuhelper/typeprovider.hxx> #include <rtl/uri.hxx> #include <rtl/random.h> -#include <rtl/logfile.hxx> #include <rtl/instance.hxx> #include <osl/time.h> #include "com/sun/star/io/XAsyncOutputMonitor.hpp" @@ -580,7 +579,6 @@ void ZipPackage::getZipFileContents() void SAL_CALL ZipPackage::initialize( const uno::Sequence< Any >& aArguments ) throw( Exception, RuntimeException ) { - RTL_LOGFILE_TRACE_AUTHOR ( "package", "mg115289", "{ ZipPackage::initialize" ); sal_Bool bHaveZipFile = sal_True; uno::Reference< XProgressHandler > xProgressHandler; beans::NamedValue aNamedValue; @@ -785,8 +783,6 @@ void SAL_CALL ZipPackage::initialize( const uno::Sequence< Any >& aArguments ) } } } - - RTL_LOGFILE_TRACE_AUTHOR ( "package", "mg115289", "} ZipPackage::initialize" ); } //-------------------------------------------------------- @@ -1371,9 +1367,6 @@ void SAL_CALL ZipPackage::commitChanges() throw WrappedTargetException(OSL_LOG_PREFIX "This package is read only!", static_cast < OWeakObject * > ( this ), makeAny ( aException ) ); } - - RTL_LOGFILE_TRACE_AUTHOR ( "package", "mg115289", "{ ZipPackage::commitChanges" ); - // first the writeTempFile is called, if it returns a stream the stream should be written to the target // if no stream was returned, the file was written directly, nothing should be done @@ -1527,8 +1520,6 @@ void SAL_CALL ZipPackage::commitChanges() // after successful storing it can be set to false m_bMediaTypeFallbackUsed = sal_False; - - RTL_LOGFILE_TRACE_AUTHOR ( "package", "mg115289", "} ZipPackage::commitChanges" ); } //-------------------------------------------------------- |