summaryrefslogtreecommitdiffstats
path: root/ceee
diff options
context:
space:
mode:
authormotek@chromium.org <motek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-07 23:14:38 +0000
committermotek@chromium.org <motek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-07 23:14:38 +0000
commit4fa47fe5aaef34cdf64615943395a1f373c68458 (patch)
tree64b09ccf1d83f5bc716a4c3b7cb87ab0debd39e2 /ceee
parentaa20e0622a945f94958daa1940385c29779d09e4 (diff)
downloadchromium_src-4fa47fe5aaef34cdf64615943395a1f373c68458.zip
chromium_src-4fa47fe5aaef34cdf64615943395a1f373c68458.tar.gz
chromium_src-4fa47fe5aaef34cdf64615943395a1f373c68458.tar.bz2
Decrease warning severity in ApiDispatcher::InvocationResult::PostError.
This is an API call error which may be justifed on the API level. We don't need to log it as such. BUG=3257972 Review URL: http://codereview.chromium.org/5563008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68535 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ceee')
-rw-r--r--ceee/ie/broker/api_dispatcher.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ceee/ie/broker/api_dispatcher.cc b/ceee/ie/broker/api_dispatcher.cc
index 9e30ee5..6590379 100644
--- a/ceee/ie/broker/api_dispatcher.cc
+++ b/ceee/ie/broker/api_dispatcher.cc
@@ -260,7 +260,7 @@ void ApiDispatcher::InvocationResult::PostResult() {
// Invocations can use this method to post an error to Chrome when it
// couldn't complete the invocation successfully.
void ApiDispatcher::InvocationResult::PostError(const std::string& error) {
- LOG(ERROR) << error;
+ LOG(WARNING) << error;
// Event handlers reuse InvocationResult code without a requestId,
// so don't DCHECK as in PostResult here.
// TODO(mad@chromium.org): Might be better to use a derived class instead.