diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-13 19:58:24 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-13 20:00:03 +0000 |
commit | 83ace11a5dc437373b64922eba77df845c0a8910 (patch) | |
tree | 001f1b53c6124b94f8157d303b9afd7eb3f62f5a /sync/api | |
parent | fbe34f579ed594329cd4a37ca7debc2704d66941 (diff) | |
download | chromium_src-83ace11a5dc437373b64922eba77df845c0a8910.zip chromium_src-83ace11a5dc437373b64922eba77df845c0a8910.tar.gz chromium_src-83ace11a5dc437373b64922eba77df845c0a8910.tar.bz2 |
Revert 289115 "Revert 288464 "[Sync] Cleanup datatype configurat..."
> 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
TBR=oshima@chromium.org
Review URL: https://codereview.chromium.org/469803004
Cr-Commit-Position: refs/heads/master@{#289354}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289354 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/api')
-rw-r--r-- | sync/api/sync_error.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sync/api/sync_error.cc b/sync/api/sync_error.cc index 4fc556b..666be5f 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_INFO : logging::LOG_ERROR; + ? logging::LOG_VERBOSE : logging::LOG_ERROR; LAZY_STREAM(logging::LogMessage(location_->file_name(), location_->line_number(), |