We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed8c64e commit 4e2978dCopy full SHA for 4e2978d
src/client.rs
@@ -128,7 +128,7 @@ impl Client {
128
let mut json_string = String::new();
129
res.read_to_string(&mut json_string);
130
131
- debug!("http response length: {}kb", json_string.len() * 1000);
+ debug!("http response length: {}kb", json_string.len() / 1000);
132
133
match serde_json::from_str::<ApiResponse<T::ResponseType>>(&json_string) {
134
Err(e) => return Err(error::Error::Json(e)),
0 commit comments