summaryrefslogtreecommitdiffstats
path: root/sync/api
diff options
context:
space:
mode:
authoroshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-12 23:31:53 +0000
committeroshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-12 23:34:38 +0000
commit90d7af9e14ee9a506fdb534e489c2d35b077ec76 (patch)
tree89aea702f2f417aa7af5077d0f28974898dae7a6 /sync/api
parentf5de7a00d48ef86eeb126652d9f68ac00ac6db23 (diff)
downloadchromium_src-90d7af9e14ee9a506fdb534e489c2d35b077ec76.zip
chromium_src-90d7af9e14ee9a506fdb534e489c2d35b077ec76.tar.gz
chromium_src-90d7af9e14ee9a506fdb534e489c2d35b077ec76.tar.bz2
Revert 288464 "[Sync] Cleanup datatype configuration error handl..."
Reason for revert: see crbug.com/403098 > [Sync] Cleanup datatype configuration error handling. > > The FailedDataTypeHandler is now informed immediately of failures, including > datatype errors, and is therefore authoritative source for all errors. As such, > partial success is no longer tracked and the various ModelTypeSets for error > types in configure results are removed. > > BUG=368834,403098 > > Review URL: https://codereview.chromium.org/420633002 TBR=zea@chromium.org Review URL: https://codereview.chromium.org/468643002 Cr-Commit-Position: refs/heads/master@{#289115} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289115 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/api')
-rw-r--r--sync/api/sync_error.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sync/api/sync_error.cc b/sync/api/sync_error.cc
index 666be5f..4fc556b 100644
--- a/sync/api/sync_error.cc
+++ b/sync/api/sync_error.cc
@@ -149,7 +149,7 @@ std::string SyncError::ToString() const {
void SyncError::PrintLogError() const {
logging::LogSeverity logSeverity =
(GetSeverity() == SYNC_ERROR_SEVERITY_INFO)
- ? logging::LOG_VERBOSE : logging::LOG_ERROR;
+ ? logging::LOG_INFO : logging::LOG_ERROR;
LAZY_STREAM(logging::LogMessage(location_->file_name(),
location_->line_number(),