Skip to content

Commit

Permalink
feat(lib): add debug log for tree components
Browse files Browse the repository at this point in the history
  • Loading branch information
manushak committed Aug 20, 2024
1 parent 16c956d commit 0bcc163
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/if-run/lib/compute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const {
EMPTY_PIPELINE,
CONFIG_WARN,
COMPUTING_PIPELINE_FOR_NODE,
COMPUTING_COMPONENT_PIPELINE,
REGROUPING,
OBSERVING,
} = STRINGS;
Expand All @@ -27,6 +28,7 @@ const {
*/
const traverse = async (children: any, params: ComputeParams) => {
for (const child in children) {
console.debug(COMPUTING_COMPONENT_PIPELINE(child));
await computeNode(children[child], params);
}
};
Expand Down

0 comments on commit 0bcc163

Please sign in to comment.