Index: src/platform-win32.cc |
diff --git a/src/platform-win32.cc b/src/platform-win32.cc |
index 5985c3f3e83f6ff47bf22d7f439fb1f8ce45b1e5..31b65c1b051171f835f9260af855f3a042b22b31 100644 |
--- a/src/platform-win32.cc |
+++ b/src/platform-win32.cc |
@@ -856,7 +856,7 @@ void* OS::Allocate(const size_t requested, |
mbase = VirtualAlloc(NULL, msize, MEM_COMMIT | MEM_RESERVE, prot); |
if (mbase == NULL) { |
- LOG(StringEvent("OS::Allocate", "VirtualAlloc failed")); |
+ LOG(ISOLATE, StringEvent("OS::Allocate", "VirtualAlloc failed")); |
return NULL; |
} |
@@ -1199,7 +1199,8 @@ static bool LoadSymbols(HANDLE process_handle) { |
if (err != ERROR_MOD_NOT_FOUND && |
err != ERROR_INVALID_HANDLE) return false; |
} |
- LOG(SharedLibraryEvent( |
+ LOG(i::Isolate::Current(), |
+ SharedLibraryEvent( |
module_entry.szExePath, |
reinterpret_cast<unsigned int>(module_entry.modBaseAddr), |
reinterpret_cast<unsigned int>(module_entry.modBaseAddr + |