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

Unified Diff: runtime/bin/eventhandler_fuchsia.cc

Issue 2955883003: [Fuchsia] Quiet an spurious error message in the EventHandler (Closed)
Patch Set: Created 3 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/eventhandler_fuchsia.cc
diff --git a/runtime/bin/eventhandler_fuchsia.cc b/runtime/bin/eventhandler_fuchsia.cc
index 71b366df645961f4ee51f9def2b4cd54ab87ba48..357a4dd82b71f9f8cb7bbfdba7f4486f3a212606 100644
--- a/runtime/bin/eventhandler_fuchsia.cc
+++ b/runtime/bin/eventhandler_fuchsia.cc
@@ -437,7 +437,7 @@ void EventHandlerImplementation::HandleInterrupt(InterruptMessage* msg) {
if (port != 0) {
const bool success = DartUtils::PostInt32(port, 1 << kDestroyedEvent);
if (!success) {
- LOG_ERR("Failed to post destroy event to port %ld\n", port);
+ LOG_INFO("Failed to post destroy event to port %ld\n", port);
}
}
} else if (IS_COMMAND(msg->data, kReturnTokenCommand)) {
@@ -492,7 +492,7 @@ void EventHandlerImplementation::HandlePacket(mx_port_packet_t* pkt) {
if (!success) {
// This can happen if e.g. the isolate that owns the port has died
// for some reason.
- LOG_ERR("Failed to post event to port %ld\n", port);
+ LOG_INFO("Failed to post event to port %ld\n", port);
}
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698