summaryrefslogtreecommitdiffstats
path: root/sync/api
diff options
context:
space:
mode:
authorzea@chromium.org <zea@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-08 23:15:57 +0000
committerzea@chromium.org <zea@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-08 23:17:18 +0000
commit93630da53e4e5593dcbb3e59103d42da036a42b1 (patch)
treee439dac92e9c081d2393ca8c84d5901df0c86ed1 /sync/api
parentf828655e44f15d96387e3b6f341a1e55d41091cc (diff)
downloadchromium_src-93630da53e4e5593dcbb3e59103d42da036a42b1.zip
chromium_src-93630da53e4e5593dcbb3e59103d42da036a42b1.tar.gz
chromium_src-93630da53e4e5593dcbb3e59103d42da036a42b1.tar.bz2
[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 Review URL: https://codereview.chromium.org/420633002 Cr-Commit-Position: refs/heads/master@{#288464} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288464 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 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(),