Skip to content

Commit

Permalink
Remove debugging log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
dudeperf3ct committed Sep 26, 2024
1 parent 7ae16e9 commit 80f867a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/zenml/integrations/vllm/services/vllm_deployment.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,8 @@ def run(self) -> None:
try:
parser = make_arg_parser(FlexibleArgumentParser())
args = parser.parse_args()
logger.info(f"Args: {args}")
# Update the arguments in place
args.__dict__.update(self.config.model_dump())
logger.info(f"Args: {args}")
uvloop.run(run_server(args=args))
except KeyboardInterrupt:
logger.info("Stopping vLLM prediction service...")
Expand Down

0 comments on commit 80f867a

Please sign in to comment.