stdout_to_debuglog/
lib.rs1use anyhow::Error;
6use fidl_fuchsia_boot as fboot;
7use zx::{self as zx, HandleBased};
8
9pub async fn init() -> Result<(), Error> {
10 let write_only_log_proxy =
11 fuchsia_component::client::connect_to_protocol::<fboot::WriteOnlyLogMarker>()?;
12
13 let debuglog_handle = write_only_log_proxy.get().await?;
14
15 for fd in &[1, 2] {
16 let debuglog_dup = debuglog_handle.duplicate_handle(zx::Rights::SAME_RIGHTS)?;
17 fdio::bind_to_fd(debuglog_dup.into_handle(), *fd)?;
18 }
19 Ok(())
20}