Removed logging

This commit is contained in:
askeluv
2019-03-01 14:33:19 +08:00
parent e450191548
commit 338cc69034

View File

@@ -1,4 +1,4 @@
import { fetchAsync, logUtils } from '@0x/utils';
import { fetchAsync } from '@0x/utils';
import Bottleneck from 'bottleneck';
const ONE_SECOND = 1000;
@@ -36,7 +36,6 @@ export class EdpsSource {
*/
public async getEdpsAsync(direction: string, symbol: string, amount: number): Promise<EdpsWrapper> {
const edpsUrl = `${EDPS_BASE_URL}/${direction}?amount=${amount}&symbol=${symbol}&decimals=`;
logUtils.log(`${direction} ${amount} ${symbol}`);
const resp = await this._limiter.schedule(() => fetchAsync(edpsUrl));
const respJson: EdpsResponse = await resp.json();
const allExchanges: EdpsWrapper = {};