Skip to content

Commit

Permalink
Remove one of the print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
lkomali committed Aug 7, 2024
1 parent 4ab531c commit a16c268
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ def _update_metrics(self, parsed_data) -> None:
current_values = getattr(self.metrics, metric_name, [])
current_values.append(metric_values)
setattr(self.metrics, metric_name, current_values)
print(self.metrics)

def _collect_metrics(self) -> None:
while not self._stop_event.is_set():
Expand Down
1 change: 1 addition & 0 deletions genai-perf/genai_perf/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,5 +163,6 @@ def run(args: Namespace, extra_args: Optional[List[str]]) -> None:
if telemetry_data_collector is not None:
telemetry_data_collector.stop()
metrics = telemetry_data_collector.metrics
#This print statement will be removed once the test is in place.
print("Collected Metrics:")
print(metrics)

0 comments on commit a16c268

Please sign in to comment.