Skip to content

Commit 1c0647f

Browse files
authored
Merge pull request #11 from saheerb/patch-1
print command line options
2 parents ff123ac + 48a5c75 commit 1c0647f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

fm_agent/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ def launch_FVP_IRIS(model_exec, config_file='', model_options=[]):
139139
cmd_line.extend(model_options)
140140
if config_file:
141141
cmd_line.extend(['-f' , config_file])
142+
logging.info(cmd_line)
142143
fm_proc = Popen(cmd_line,stdout=PIPE,stderr=STDOUT, close_fds=ON_POSIX)
143144
out_q = Queue()
144145
reader_t = Thread(target=enqueue_output, args=(fm_proc.stdout, out_q))

0 commit comments

Comments
 (0)