Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5243)

Unified Diff: chrome/browser/sync/profile_sync_service.cc

Issue 7655055: [Sync] Make BackendMigrator not wait for full sync cycles (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix race condition Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,

Powered by Google App Engine
This is Rietveld 408576698