[mastodon-client] remove debug logging

This commit is contained in:
Laura Hausmann 2023-07-06 01:42:26 +02:00 committed by Laura Hausmann
parent 3ebd35ec0e
commit 034e1aeb14

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,