Skip to content

Commit 4e2978d

Browse files
author
Paul Maruhn
committed
fix stupid error...
1 parent ed8c64e commit 4e2978d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ impl Client {
128128
let mut json_string = String::new();
129129
res.read_to_string(&mut json_string);
130130

131-
debug!("http response length: {}kb", json_string.len() * 1000);
131+
debug!("http response length: {}kb", json_string.len() / 1000);
132132

133133
match serde_json::from_str::<ApiResponse<T::ResponseType>>(&json_string) {
134134
Err(e) => return Err(error::Error::Json(e)),

0 commit comments

Comments
 (0)