oops: remove console.log

This commit is contained in:
Владислав Чикалкин 2020-09-23 17:05:18 +03:00
parent 373a8d9881
commit 38fa2951c5

View File

@ -11,7 +11,6 @@ import { IOption } from 'core/types/Calculation/options';
import { ElementsNames } from 'core/types/elements';
function _getFakeEntities(entityName, fields?, where?, wherein?): IOption[] {
console.log('where', where);
let entities = entityFakeData[entityName];
let totalWhere = Object.assign({}, where, wherein);
@ -34,7 +33,6 @@ class CalculationController {
res: Response,
): Promise<any> => {
const { elementsList }: { elementsList: TGetInitialOptions } = req.body;
console.log('CalculationController -> elementsList', elementsList);
let options = {};
Object.keys(elementsList).forEach(elementName => {
const element: IGetEntity = elementsList[elementName];