Skip to content

Commit 79fc547

Browse files
authored
Merge pull request #19 from TaskarCenterAtUW/bugfix-remove-logs
Remove extra logs
2 parents c64ba0c + 95a8d99 commit 79fc547

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change log
22

3+
### 0.0.16
4+
- Removed extra logs
5+
36
### 0.0.15
47
This fixes the inconsistent listening behavior for the subscription of a topic from core.
58
- Due to the usage of `for message in receiver` logic in the topic, it is unknown when the loop will end and the core will stop listening to the topic.

src/python_ms_core/core/topic/topic.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ def messages(self, provider, topic, subscription):
2929
except Exception as e:
3030
print(f'Error: {e}, Invalid message received: {message}')
3131
finally:
32-
print(f'Completing message')
3332
topic_receiver.complete_message(message)
34-
logger.info(f'Completed gathering messages')
3533
logger.info('Completed topic receiver')
3634

3735
# Sends data to the callback function

0 commit comments

Comments
 (0)