remove print statements

This commit is contained in:
Josh Burman
2021-11-02 03:32:35 +00:00
parent 3a95003493
commit 5a2871b102
3 changed files with 0 additions and 4 deletions

View File

@ -9,7 +9,6 @@ from sqs_listener import SqsListener
class ServiceListener(SqsListener):
def handle_message(self, body, attributes, messages_attributes):
# gather/manage/process data based on the particular needs
print(f'{time.localtime()} - message received...')
service = LoftService(body)
service.process()
# log the things