Skip to content

Commit

Permalink
small test
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasferry committed Mar 29, 2018
1 parent a773291 commit df0847f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions red/runtime/nodes/flows/Flow.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,9 @@ function Flow(global, flow) {
if (modules[j].id.indexOf(node.type) >= 0) { //if the type of the node being loaded is equal to the plugin name then use the plugin
modules[j].module.deploy(node, function (node, id) {
newNode = createNode(node.type, node);
console.log("id : "+id);
console.log("Type : "+node.type);
console.log("node : "+JSON.stringify(node));
if (newNode) {
activeNodes[id] = newNode;
}
Expand Down

0 comments on commit df0847f

Please sign in to comment.