Skip to content

Commit

Permalink
Correct logging information (#1507)
Browse files Browse the repository at this point in the history
  • Loading branch information
ya0guang authored Feb 27, 2024
1 parent caf429e commit b0c484b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streamlit_webrtc/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def _worker_thread(self):
done_idx = tasks.index(task)
old_tasks = tasks[:done_idx]
for old_task in old_tasks:
logger.info("Cancel an old task %s", task)
logger.info("Cancel an old task %s", old_task)
old_task.cancel()
tasks = [t for t in tasks if not t.done()]

Expand Down

0 comments on commit b0c484b

Please sign in to comment.