We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c4d7b4 commit 762d36cCopy full SHA for 762d36c
src/share/api/api.service.ts
@@ -87,9 +87,9 @@ export class APIClientService {
87
88
protected async _delete(path: string, config?: AxiosRequestConfig) {
89
const url = pathJoin(this.endpoint, path)
90
- if (this.debugMode) console.log({url, path, config})
+ this._recordAxiosRequest(url, path, config)
91
const result = await axios.delete(url, config)
92
- if (this.debugMode) console.log({result})
+ this._recordAxiosResponse(result)
93
return result.data
94
}
95
0 commit comments