fix: remove debug logs

This commit is contained in:
Skillz4Killz
2022-03-25 21:42:31 +00:00
committed by GitHub
parent 8bac0ebf2d
commit 69bcccc5fd

View File

@@ -15,15 +15,10 @@ import { API_VERSION } from "../util/constants.ts";
export function createRestManager(options: CreateRestManagerOptions) {
const version = options.version || API_VERSION;
console.log("url1", baseEndpoints.BASE_URL);
if (options.customUrl) {
console.log("url2", baseEndpoints.BASE_URL);
baseEndpoints.BASE_URL = `${options.customUrl}/v${version}`;
}
console.log("url3", baseEndpoints.BASE_URL);
return {
// current invalid amount
invalidRequests: 0,