diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2018-03-14 09:06:02 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2018-03-14 09:13:48 +0800 |
commit | c8a8b851d8e0622559f71843a206a0e6e601cd83 (patch) | |
tree | 143e238a68005fdb0e0d82c6750ea890fec4021c /packages/react-docs/src | |
parent | c2f8858aabad2355e09ba65e900202b7c4edec5e (diff) | |
download | dexon-sol-tools-c8a8b851d8e0622559f71843a206a0e6e601cd83.tar dexon-sol-tools-c8a8b851d8e0622559f71843a206a0e6e601cd83.tar.gz dexon-sol-tools-c8a8b851d8e0622559f71843a206a0e6e601cd83.tar.bz2 dexon-sol-tools-c8a8b851d8e0622559f71843a206a0e6e601cd83.tar.lz dexon-sol-tools-c8a8b851d8e0622559f71843a206a0e6e601cd83.tar.xz dexon-sol-tools-c8a8b851d8e0622559f71843a206a0e6e601cd83.tar.zst dexon-sol-tools-c8a8b851d8e0622559f71843a206a0e6e601cd83.zip |
Consolidate all console.log into the @0xproject/utils package
Diffstat (limited to 'packages/react-docs/src')
-rw-r--r-- | packages/react-docs/src/ts/components/custom_enum.tsx | 3 | ||||
-rw-r--r-- | packages/react-docs/src/ts/utils/utils.ts | 5 |
2 files changed, 2 insertions, 6 deletions
diff --git a/packages/react-docs/src/ts/components/custom_enum.tsx b/packages/react-docs/src/ts/components/custom_enum.tsx index deb33ff1d..1fe55eedc 100644 --- a/packages/react-docs/src/ts/components/custom_enum.tsx +++ b/packages/react-docs/src/ts/components/custom_enum.tsx @@ -1,3 +1,4 @@ +import { logUtils } from '@0xproject/utils'; import * as _ from 'lodash'; import * as React from 'react'; @@ -16,7 +17,7 @@ export interface CustomEnumProps { export function CustomEnum(props: CustomEnumProps) { const type = props.type; if (!_.startsWith(type.defaultValue, STRING_ENUM_CODE_PREFIX)) { - utils.consoleLog('We do not yet support `Variable` types that are not strEnums'); + logUtils.log('We do not yet support `Variable` types that are not strEnums'); return null; } // Remove the prefix and postfix, leaving only the strEnum values without quotes. diff --git a/packages/react-docs/src/ts/utils/utils.ts b/packages/react-docs/src/ts/utils/utils.ts index 8e1a80a44..f8c1fefff 100644 --- a/packages/react-docs/src/ts/utils/utils.ts +++ b/packages/react-docs/src/ts/utils/utils.ts @@ -1,9 +1,4 @@ export const utils = { - consoleLog(message: string) { - /* tslint:disable */ - console.log(message); - /* tslint:enable */ - }, spawnSwitchErr(name: string, value: any) { return new Error(`Unexpected switch value: ${value} encountered for ${name}`); }, |