diff --git a/shell/platform/fuchsia/flutter/component.cc b/shell/platform/fuchsia/flutter/component.cc index deb12123624f2..fd96d36a2d88b 100644 --- a/shell/platform/fuchsia/flutter/component.cc +++ b/shell/platform/fuchsia/flutter/component.cc @@ -233,15 +233,21 @@ Application::Application( << "): " << zx_status_get_string(status); return; } - const char* other_dirs[] = {"debug", "ctrl"}; + const char* other_dirs[] = {"debug", "ctrl", "diagnostics"}; // add other directories as RemoteDirs. for (auto& dir_str : other_dirs) { fidl::InterfaceHandle dir; auto request = dir.NewRequest().TakeChannel(); - fdio_service_connect_at(directory_ptr_.channel().get(), dir_str, - request.release()); - outgoing_dir_->AddEntry( - dir_str, std::make_unique(dir.TakeChannel())); + auto status = fdio_service_connect_at(directory_ptr_.channel().get(), + dir_str, request.release()); + if (status == ZX_OK) { + outgoing_dir_->AddEntry( + dir_str, std::make_unique(dir.TakeChannel())); + } else { + FML_LOG(ERROR) << "could not add out directory entry(" << dir_str + << ") for flutter app(" << debug_label_ + << "): " << zx_status_get_string(status); + } } };