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 |