diff --git a/datahub-web-react/src/app/lineageV2/useComputeGraph/useComputeGraph.tsx b/datahub-web-react/src/app/lineageV2/useComputeGraph/useComputeGraph.tsx index 002412b286cd1..4d1040ded3896 100644 --- a/datahub-web-react/src/app/lineageV2/useComputeGraph/useComputeGraph.tsx +++ b/datahub-web-react/src/app/lineageV2/useComputeGraph/useComputeGraph.tsx @@ -46,7 +46,7 @@ export default function useComputeGraph(urn: string, type: EntityType): Processe const { flowNodes, flowEdges, resetPositions } = useMemo( () => { const smallContext = { nodes, edges, adjacencyList }; - console.debug('OLD CONTEXT', smallContext); + console.debug(smallContext); // Computed before nodes are hidden by `hideNodes`, to keep node order consistent. // Includes nodes that will be hidden, but they'll be filtered out by `getDisplayedNodes`. @@ -62,7 +62,7 @@ export default function useComputeGraph(urn: string, type: EntityType): Processe ignoreSchemaFieldStatus, }; const newSmallContext = hideNodes(urn, config, smallContext); - console.debug('NEW CONTEXT', newSmallContext); + console.debug(newSmallContext); const { displayedNodes, parents } = getDisplayedNodes(urn, orderedNodes, newSmallContext); const nodeBuilder = new NodeBuilder(urn, type, displayedNodes, parents);