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

Unified Diff: chrome/browser/sync/engine/process_commit_response_command.cc

Issue 1294002: Fix for negative routing info problem. We were replacing tokens after (Closed)
Patch Set: Comment fixes. Created 10 years, 9 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/engine/process_commit_response_command.cc
diff --git a/chrome/browser/sync/engine/process_commit_response_command.cc b/chrome/browser/sync/engine/process_commit_response_command.cc
index 0db5def9f9f628832ed48994017c6e1579d2bc95..7c4c592180928bfdd279f19ef141812e9b2c7e71 100644
--- a/chrome/browser/sync/engine/process_commit_response_command.cc
+++ b/chrome/browser/sync/engine/process_commit_response_command.cc
@@ -196,9 +196,9 @@ void ProcessCommitResponseCommand::ProcessCommitResponse(
void LogServerError(const CommitResponse_EntryResponse& res) {
if (res.has_error_message())
- LOG(ERROR) << " " << res.error_message();
+ LOG(WARNING) << " " << res.error_message();
else
- LOG(ERROR) << " No detailed error message returned from server";
+ LOG(WARNING) << " No detailed error message returned from server";
}
CommitResponse::ResponseType

Powered by Google App Engine
This is Rietveld 408576698