diff options
author | Brandon Millman <brandon@0xproject.com> | 2018-03-15 06:30:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-15 06:30:59 +0800 |
commit | 4a27a7dc581fc6c8a3d4e212ca3712c249a5b417 (patch) | |
tree | 344bd9cb3391a7a0cfb726cc7a54f4694eabd974 /packages/react-docs/src | |
parent | aea7207b9f9865a279243889a5f9ca1638ddc739 (diff) | |
parent | 3b3d5b12bc78b13860504b9699fd5f15ae8813a1 (diff) | |
download | dexon-0x-contracts-4a27a7dc581fc6c8a3d4e212ca3712c249a5b417.tar.gz dexon-0x-contracts-4a27a7dc581fc6c8a3d4e212ca3712c249a5b417.tar.zst dexon-0x-contracts-4a27a7dc581fc6c8a3d4e212ca3712c249a5b417.zip |
Merge pull request #452 from 0xProject/feature/utils/console-log
Consolidate all console.log utils into @0xproject/utils
Diffstat (limited to 'packages/react-docs/src')
-rw-r--r-- | packages/react-docs/src/components/custom_enum.tsx | 3 | ||||
-rw-r--r-- | packages/react-docs/src/utils/utils.ts | 5 |
2 files changed, 2 insertions, 6 deletions
diff --git a/packages/react-docs/src/components/custom_enum.tsx b/packages/react-docs/src/components/custom_enum.tsx index deb33ff1d..1fe55eedc 100644 --- a/packages/react-docs/src/components/custom_enum.tsx +++ b/packages/react-docs/src/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/utils/utils.ts b/packages/react-docs/src/utils/utils.ts index 8e1a80a44..f8c1fefff 100644 --- a/packages/react-docs/src/utils/utils.ts +++ b/packages/react-docs/src/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}`); }, |