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

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: Sync to head 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 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,

Powered by Google App Engine
This is Rietveld 408576698