diff --git a/docs/examples/python/highvolume_example.py b/docs/examples/python/highvolume_example.py index 6683db7e15e4d7b7dd3f31efefa83dbdc550a6d0..d6f13d14d6a49973d1f606ec631c18e53aaa2022 100644 --- a/docs/examples/python/highvolume_example.py +++ b/docs/examples/python/highvolume_example.py @@ -167,13 +167,13 @@ def main(): task_queues.append(queue) p = Process(target=run_write_task, args=(i, queue)) p.start() - logging.debug(f"WriteTask {i} started with pid {p.pid}") + logging.debug(f"WriteTask-{i} started with pid {p.pid}") write_processes.append(p) for i in range(READ_TASK_COUNT): p = Process(target=run_read_task, args=(i, task_queues)) p.start() - logging.debug(f"ReadTask {i} started with pid {p.pid}") + logging.debug(f"ReadTask-{i} started with pid {p.pid}") read_processes.append(p) try: