Skip to content

Commit 97ab0ab

Browse files
committed
add logging
1 parent 4911411 commit 97ab0ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plogical/upgrade.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def executioner(command, component, do_exit=0):
106106
FNULL = open(os.devnull, 'w')
107107
count = 0
108108
while True:
109-
res = subprocess.call(shlex.split(command), stdout=FNULL, stderr=subprocess.STDOUT)
109+
res = subprocess.call(shlex.split(command), stderr=subprocess.STDOUT)
110110
if res != 0:
111111
count = count + 1
112112
Upgrade.stdOut(component + ' failed, trying again, try number: ' + str(count), 0)

0 commit comments

Comments
 (0)