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

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

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