aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/utils/requests.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/requests.ts')
-rw-r--r--src/utils/requests.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/utils/requests.ts b/src/utils/requests.ts
index acbde374..8ce80601 100644
--- a/src/utils/requests.ts
+++ b/src/utils/requests.ts
@@ -23,8 +23,6 @@ export function asyncRequestToCustomServer(type: string, url: string, data = {},
export async function asyncRequestToServer(type: string, address: string, data = {}, headers = {}): Promise<FetchResponse> {
const serverAddress = Config.config.testingServer ? CompileConfig.testingServerAddress : Config.config.serverAddress;
- console.log(address, headers)
-
return await (asyncRequestToCustomServer(type, serverAddress + address, data, headers));
}