Skip to content

Commit

Permalink
chore(generator): turn log info -> debug on clear
Browse files Browse the repository at this point in the history
  • Loading branch information
tengomucho committed Jul 3, 2024
1 parent ed1a0dd commit c4d46fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ def clear(self, batch_id: Optional[int] = None):
def _clear(self, keep_slot_ids: List):
for slot in self.slots:
if slot.state != Slot.State.EMPTY and slot.id not in keep_slot_ids:
logger.info(f"Removing slot {slot.id} with request {slot.request_id}")
logger.debug(f"Removing slot {slot.id} with request {slot.request_id}")
slot.clear()

@classmethod
Expand Down

0 comments on commit c4d46fe

Please sign in to comment.