| Index: sandbox/win/src/heap_helper.cc
|
| diff --git a/sandbox/win/src/heap_helper.cc b/sandbox/win/src/heap_helper.cc
|
| index 4e4401a9a69f9cd5c8a79415527bd76d5dd9edf3..605a7ac11a25fe800dcf60eba198d583e70fc397 100644
|
| --- a/sandbox/win/src/heap_helper.cc
|
| +++ b/sandbox/win/src/heap_helper.cc
|
| @@ -48,12 +48,12 @@ HANDLE FindCsrPortHeap() {
|
| HANDLE handle = all_heaps[i];
|
| DWORD flags = 0;
|
| if (!HeapFlags(handle, &flags)) {
|
| - LOG(ERROR) << "Unable to get flags for this heap";
|
| + DLOG(ERROR) << "Unable to get flags for this heap";
|
| continue;
|
| }
|
| if ((flags & HEAP_CLASS_MASK) == HEAP_CLASS_8) {
|
| if (nullptr != csr_port_heap) {
|
| - LOG(ERROR) << "Found multiple suitable CSR Port heaps";
|
| + DLOG(ERROR) << "Found multiple suitable CSR Port heaps";
|
| return nullptr;
|
| }
|
| csr_port_heap = handle;
|
|
|