| Index: src/platform-solaris.cc
|
| diff --git a/src/platform-solaris.cc b/src/platform-solaris.cc
|
| index b484c819af9782f06974ceb1cca8fe2b002b2c3b..6e66512841b8526b0d5c21e90741a70bdb0f2c88 100644
|
| --- a/src/platform-solaris.cc
|
| +++ b/src/platform-solaris.cc
|
| @@ -169,7 +169,7 @@ void* OS::Allocate(const size_t requested,
|
| void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0);
|
|
|
| if (mbase == MAP_FAILED) {
|
| - LOG(StringEvent("OS::Allocate", "mmap failed"));
|
| + LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed"));
|
| return NULL;
|
| }
|
| *allocated = msize;
|
|
|