Skip to content

Commit d07a67b

Browse files
Remove symbolizer path logging from environment.py (#5083)
Removed specific logging statements from `src/clusterfuzz/_internal/system/environment.py` as requested. Verified the changes by running the relevant tests in `src/clusterfuzz/_internal/tests/core/system/environment_test.py`. --- *PR created automatically by Jules for task [15698190189943788410](https://jules.google.com/task/15698190189943788410) started by @jonathanmetzman* --------- Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
1 parent a716630 commit d07a67b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/clusterfuzz/_internal/system/environment.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,6 @@ def get_llvm_symbolizer_path():
366366
stderr=subprocess.DEVNULL)
367367
if return_code == 0:
368368
# llvm-symbolize works, return it.
369-
logs.info(f'Environment Symbolizer Path :- {llvm_symbolizer_path}')
370369
return llvm_symbolizer_path
371370

372371
# Either
@@ -377,12 +376,10 @@ def get_llvm_symbolizer_path():
377376

378377
# Make sure that we have a default llvm-symbolizer for this platform.
379378
if not os.path.exists(llvm_symbolizer_path):
380-
logs.info(f'None Symbolizer Path :- {llvm_symbolizer_path}')
381379
return None
382380

383381
# Make sure that llvm symbolizer binary is executable.
384382
os.chmod(llvm_symbolizer_path, 0o750)
385-
logs.info(f'Default Symbolizer Path :- {llvm_symbolizer_path}')
386383
return llvm_symbolizer_path
387384

388385

0 commit comments

Comments
 (0)