| Index: services/resource_coordinator/memory_instrumentation/coordinator_impl.cc | 
| diff --git a/services/resource_coordinator/memory_instrumentation/coordinator_impl.cc b/services/resource_coordinator/memory_instrumentation/coordinator_impl.cc | 
| index 2d993c79f57f0cb1d2d95f37166a2d09ba80af16..3d8dd34b617fbe6ef03da9c7d116b63e21a10e21 100644 | 
| --- a/services/resource_coordinator/memory_instrumentation/coordinator_impl.cc | 
| +++ b/services/resource_coordinator/memory_instrumentation/coordinator_impl.cc | 
| @@ -117,7 +117,7 @@ void CoordinatorImpl::RequestGlobalMemoryDump( | 
| args.dump_type != base::trace_event::MemoryDumpType::SUMMARY_ONLY) { | 
| for (const auto& request : queued_memory_dump_requests_) { | 
| if (request.args.level_of_detail == args.level_of_detail) { | 
| -        VLOG(1) << base::trace_event::MemoryDumpManager::kLogPrefix << " (" | 
| +        VLOG(1) << "RequestGlobalMemoryDump(" | 
| << base::trace_event::MemoryDumpTypeToString(args.dump_type) | 
| << ") skipped because another dump request with the same " | 
| "level of detail (" | 
| @@ -219,8 +219,7 @@ void CoordinatorImpl::OnProcessMemoryDumpResponse( | 
|  | 
| if (!success) { | 
| ++failed_memory_dump_count_; | 
| -    VLOG(1) << base::trace_event::MemoryDumpManager::kLogPrefix | 
| -            << " failed because of NACK from client"; | 
| +    VLOG(1) << "RequestGlobalMemoryDump() FAIL: NACK from client process"; | 
| } | 
|  | 
| FinalizeGlobalMemoryDumpIfAllManagersReplied(); | 
|  |