diff --git a/kontor-scripts/read_queue.py b/kontor-scripts/read_queue.py index 5561f73..e4ac2a9 100644 --- a/kontor-scripts/read_queue.py +++ b/kontor-scripts/read_queue.py @@ -25,7 +25,7 @@ class MyListener(stomp.ConnectionListener): def on_message(self, frame): logger.info("received a message %s", frame.body) link = msgspec.json.decode(frame.body, type=Link) - self.log.info("found link: %s", link.url) + logger.info("found link: %s", link.url) if __name__ == '__main__':