Skip to content

Commit

Permalink
Remove print statement in production
Browse files Browse the repository at this point in the history
Reviewed By: saputkin

Differential Revision: D50005204

fbshipit-source-id: 966c84669f17f0c91f9901c5cbd225584b0a738b
  • Loading branch information
arthaud authored and facebook-github-bot committed Oct 6, 2023
1 parent e3f4969 commit 237aefd
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions sapp/pipeline/base_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ def analysis_output_to_dict_entries(

# If we have a mapfile, create the map.
if linemapfile:
print("Parsing linemap file")
log.info("Parsing linemap file")
with open(linemapfile, "r") as f:
linemap = json.load(f)
Expand All @@ -179,7 +178,6 @@ def analysis_output_to_dict_entries(
if previous_issue_handles:
log.info("Parsing previous issue handles")
previous_handles = BaseParser.parse_handles_file(previous_issue_handles)
print("previous handles", previous_handles)

log.info("Parsing analysis output...")
for typ, key, e in self._analysis_output_to_parsed_tuples(inputfile):
Expand Down

0 comments on commit 237aefd

Please sign in to comment.