Remove tracing_appender as it does not support build target mipsel-unknown-linux-gnu

This commit is contained in:
Tim Kuehn
2021-04-01 19:37:02 -07:00
parent a41bbf65b2
commit 07d07d7ba3
7 changed files with 13 additions and 26 deletions

View File

@@ -47,7 +47,7 @@ impl World for HelloServer {
#[tokio::main]
async fn main() -> anyhow::Result<()> {
let flags = Flags::parse();
let _uninstall = init_tracing("Tarpc Example Server")?;
init_tracing("Tarpc Example Server")?;
let server_addr = (IpAddr::V6(Ipv6Addr::LOCALHOST), flags.port);