Skip to content

Commit

Permalink
Merge pull request #2 from EVOLVED-5G/log_fix
Browse files Browse the repository at this point in the history
Log fix
  • Loading branch information
NaniteBased authored Feb 14, 2022
2 parents badd377 0c0b5b2 commit afa38ee
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 1,7 @@
**14/02/2022** [Version 3.2.1]

- Fix redirection of command line output (Cli/TapExecute)

**03/02/2022** [Version 3.2.0]

- Implement Verdict handling
Expand Down
2 changes: 1 addition & 1 deletion Executor/Tasks/Run/cli_execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 11,5 @@ def __init__(self, logMethod, parent, params):
}

def Run(self):
cli = Cli(self.params['Parameters'], self.params['CWD'], self.logMethod)
cli = Cli(self.params['Parameters'], self.params['CWD'], self.Log)
cli.Execute()
2 changes: 1 addition & 1 deletion Executor/Tasks/Run/tap_execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 26,7 @@ def Run(self):
externals = self.params['Externals']
gatherResults = self.params['GatherResults']

tap = Tap(tapPlan, externals, self.logMethod)
tap = Tap(tapPlan, externals, self.Log)
tap.Execute()

if gatherResults:
Expand Down

0 comments on commit afa38ee

Please sign in to comment.