| 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 70da3a19e2d0de4d545dae269a84b726a73b321b..1a6f625f9b7a3fc6dc74b9c40f7b51044a8fe731 100644
|
| --- a/chrome/browser/sync/profile_sync_service.cc
|
| +++ b/chrome/browser/sync/profile_sync_service.cc
|
| @@ -565,11 +565,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,
|
|
|