You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2010/10/02 11:45:41 UTC

svn commit: r1003759 - /commons/proper/daemon/trunk/src/native/windows/src/javajni.c

Author: mturk
Date: Sat Oct  2 09:45:40 2010
New Revision: 1003759

URL: http://svn.apache.org/viewvc?rev=1003759&view=rev
Log:
More jvm.dll load attempts logging

Modified:
    commons/proper/daemon/trunk/src/native/windows/src/javajni.c

Modified: commons/proper/daemon/trunk/src/native/windows/src/javajni.c
URL: http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/windows/src/javajni.c?rev=1003759&r1=1003758&r2=1003759&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/windows/src/javajni.c (original)
+++ commons/proper/daemon/trunk/src/native/windows/src/javajni.c Sat Oct  2 09:45:40 2010
@@ -207,7 +207,8 @@ static BOOL __apxLoadJvmDll(LPCWSTR szJv
                     if (LoadLibraryW(crtBinPath)) {
                         /* Found MSVCRTxx.dll
                          */
-                        apxLogWrite(APXLOG_MARK_DEBUG "preloaded '%S'", crtBinPath);
+                        apxLogWrite(APXLOG_MARK_DEBUG "preloaded '%S'",
+                                    crtBinPath);
                         break;
                     }
                 }
@@ -230,6 +231,8 @@ static BOOL __apxLoadJvmDll(LPCWSTR szJv
             if (jreBinPath[i] == L'\\' || jreBinPath[i] == L'/') {
                 jreBinPath[i] = L'\0';
                 DYNLOAD_CALL(SetDllDirectoryW)(jreBinPath);
+                apxLogWrite(APXLOG_MARK_DEBUG "seting DLL search path to '%S'",
+                            jreBinPath);
                 l++;
             }
         }