remove unnecessary debug

This commit is contained in:
Keagan McClelland
2021-12-04 15:22:29 -07:00
committed by Aiden McClelland
parent 92ff208bb7
commit e6d1e49984

View File

@@ -348,12 +348,12 @@ async fn cli_install(
let body = Body::wrap_stream(tokio_util::io::ReaderStream::new(file));
let client = reqwest::Client::new();
let res = client
.post(dbg!(format!(
.post(format!(
"{}://{}/rest/rpc/{}",
ctx.protocol(),
ctx.host(),
guid
)))
))
.header(CONTENT_LENGTH, content_length)
.body(body)
.send()