[mastodon-client] remove debug logging

This commit is contained in:
Laura Hausmann 2023-07-06 01:42:26 +02:00
parent 33aa901486
commit 4aa088f173
Signed by: zotan
GPG key ID: D044E84C5BE01605

View file

@ -593,9 +593,6 @@ namespace MisskeyAPI {
}
}
console.log(`sending request to ${this.baseUrl}${path} with params:`);
console.log(JSON.stringify(bodyParams, null, 2));
return axios.post<T>(this.baseUrl + path, bodyParams, options).then((resp: AxiosResponse<T>) => {
const res: Response<T> = {
data: resp.data,