handlers.py 596 B

12345678910111213141516171819202122232425
  1. import logging
  2. from abc import ABCMeta, abstractmethod
  3. class StompHandler(logging.StreamHandler):
  4. '''
  5. Send messages to a remote queue broker using the STOMP protocol.
  6. This module is named and configured separately from
  7. standard logging for clarity about its scope: while logging has an
  8. informational purpose, this module has a functional one.
  9. '''
  10. def __init__(self, ep):
  11. self.ep = ep
  12. super().__init__()
  13. def emit(self, record):
  14. '''
  15. Send the message to the destination endpoint.
  16. '''
  17. return self.format(record)