summaryrefslogtreecommitdiffstats
path: root/ceee
diff options
context:
space:
mode:
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.