| Index: chrome/browser/sync/profile_sync_service.cc
|
| diff --git a/chrome/browser/sync/profile_sync_service.cc b/chrome/browser/sync/profile_sync_service.cc
|
| index 4480774cb8b4e869c4cda223fe9ed6f8d6043f04..db5ac1e6559f698a2f32c0724d23329f0de0f60e 100644
|
| --- a/chrome/browser/sync/profile_sync_service.cc
|
| +++ b/chrome/browser/sync/profile_sync_service.cc
|
| @@ -604,11 +604,11 @@ void ProfileSyncService::OnUnrecoverableError(
|
| wizard_.Step(SyncSetupWizard::FATAL_ERROR);
|
|
|
| NotifyObservers();
|
| - LOG(ERROR) << "Unrecoverable error detected -- ProfileSyncService unusable."
|
| - << message;
|
| std::string location;
|
| from_here.Write(true, true, &location);
|
| - LOG(ERROR) << location;
|
| + LOG(ERROR)
|
| + << "Unrecoverable error detected at " << location
|
| + << " -- ProfileSyncService unusable: " << message;
|
|
|
| // Shut all data types down.
|
| MessageLoop::current()->PostTask(FROM_HERE,
|
|
|