Skip to content

Commit

Permalink
fix(lib): drop unnecessary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
narekhovhannisyan committed Dec 17, 2024
1 parent b576e7a commit 90df77a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/if-run/lib/compute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ const computeNode = async (node: Node, params: ComputeParams): Promise<any> => {
node.inputs = outputStorage;

if (params.context.explainer) {
console.log('reached here');
addExplainData({
pluginName,
metadata: plugin.metadata,
Expand All @@ -155,8 +154,6 @@ const computeNode = async (node: Node, params: ComputeParams): Promise<any> => {
const isRegrouped = regroupValues.every(one =>
[...childNames].includes(one)
);
console.log(isRegrouped);
console.log(regroupValues);

if (!isRegrouped) {
node.children = Regroup(
Expand Down

0 comments on commit 90df77a

Please sign in to comment.