| 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);
|
| }
|
| }
|
| }
|
|
|