File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ const argv = yargs(hideBin(process.argv))
114114 process . exit ( 1 ) ;
115115 //console.log(chalk.green(JSON.stringify(result)));
116116 } catch ( error ) {
117- console . error ( chalk . red ( `Error running flow due to: ${ error } ` ) ) ;
117+ console . error ( chalk . red ( `Internal error running flow` ) ) ;
118118 process . exit ( 1 ) ;
119119 }
120120 } else {
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ class Graph {
174174 const sNode = new setVarNode ( node . data , prevNodeOutputData , this . envVariables ) ;
175175 const newVariable = sNode . evaluate ( ) ;
176176 if ( newVariable != undefined ) {
177- console . log ( chalk . green ( ` ✓ ` ) + chalk . dim ( `Evaluate variable: ${ JSON . stringify ( newVariable ) } ` ) ) ;
177+ console . log ( chalk . green ( ` ✓ ` ) + chalk . dim ( `Set variable: ${ JSON . stringify ( newVariable ) } ` ) ) ;
178178 this . envVariables = {
179179 ...this . envVariables ,
180180 ...newVariable ,
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ class requestNode extends Node {
4141 // step 3
4242 const options = this . formulateRequest ( finalUrl , variablesDict ) ;
4343
44+ console . log ( chalk . green ( ` ✓ ` ) + chalk . dim ( `type = ${ this . nodeData . requestType . toUpperCase ( ) } ` ) ) ;
4445 console . log ( chalk . green ( ` ✓ ` ) + chalk . dim ( `url = ${ finalUrl } ` ) ) ;
4546
4647 const res = await this . runHttpRequest ( options ) ;
You can’t perform that action at this time.
0 commit comments