summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-10-17 13:52:24 +0000
committerRüdiger Timm <rt@openoffice.org>2005-10-17 13:52:24 +0000
commit52f9d5bc62f1edd8f2176eb81540fff1dd1587d8 (patch)
tree683b12a975def911b011e23afdcdd4d6e6f4d163 /sal
parent73cd79644d4355de483b0d0c04fba034ac02795b (diff)
INTEGRATION: CWS perform05 (1.18.88); FILE MERGED
2005/09/30 20:55:33 mt 1.18.88.2: RESYNC: (1.18-1.19); FILE MERGED 2005/07/21 10:53:08 mt 1.18.88.1: RTL_LOG
Diffstat (limited to 'sal')
-rw-r--r--sal/osl/w32/module.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/sal/osl/w32/module.c b/sal/osl/w32/module.c
index 85d285709f46..da7a62cfe60d 100644
--- a/sal/osl/w32/module.c
+++ b/sal/osl/w32/module.c
@@ -4,9 +4,9 @@
*
* $RCSfile: module.c,v $
*
- * $Revision: 1.19 $
+ * $Revision: 1.20 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 15:07:21 $
+ * last change: $Author: rt $ $Date: 2005-10-17 14:52:24 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -41,7 +41,7 @@
#include <osl/diagnose.h>
#include <osl/thread.h>
#include <osl/file.h>
-
+#include <rtl/logfile.h>
/*
under WIN32, we use the void* oslModule
as a WIN32 HANDLE (which is also a 32-bit value)
@@ -58,6 +58,8 @@ oslModule SAL_CALL osl_loadModule(rtl_uString *strModuleName, sal_Int32 nRtldMod
oslModule ret = 0;
oslFileError nError;
+ RTL_LOGFILE_TRACE1( "{ osl_loadModule start: %S", (LPTSTR)&strModuleName->buffer );
+
OSL_ASSERT(strModuleName);
nRtldMode = nRtldMode; /* avoid warnings */
@@ -79,6 +81,8 @@ oslModule SAL_CALL osl_loadModule(rtl_uString *strModuleName, sal_Int32 nRtldMod
rtl_uString_release(Module);
SetErrorMode(errorMode);
+ RTL_LOGFILE_TRACE1( "} osl_loadModule end: %S", (LPTSTR)&strModuleName->buffer );
+
return ret;
}