未验证 提交 0185c41e 编写于 作者: J Jason Simmons 提交者: GitHub

Remove the strace debug logging from the Fuchsia gen_package script (#13963)

上级 e307b05b
......@@ -85,13 +85,7 @@ def main():
else:
manifest_file = GenerateManifest(args.package_dir)
strace_out = os.path.join(output_dir, 'strace_out')
pm_command_base = [
'strace',
'-f',
'-o',
strace_out,
args.pm_bin,
'-o',
output_dir,
......@@ -109,9 +103,7 @@ def main():
['archive', '--output='+ os.path.join(os.path.dirname(output_dir), args.far_name + "-0")],
]
for pm_command in pm_commands:
pm_command_args = pm_command_base + pm_command
sys.stderr.write("===== Running %s\n" % pm_command_args)
subprocess.check_output(pm_command_args)
subprocess.check_output(pm_command_base + pm_command)
except subprocess.CalledProcessError as e:
print('==================== Manifest contents =========================================')
with open(manifest_file, 'r') as manifest:
......@@ -123,10 +115,6 @@ def main():
with open(meta_contents_path, 'r') as meta_contents:
sys.stdout.write(meta_contents.read())
print('==================== End meta/contents =========================================')
print('==================== Strace output =============================================')
with open(strace_out, 'r') as strace:
sys.stdout.write(strace.read())
print('==================== End strace output =========================================')
raise
return 0
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册