jasonrbriggs / stomp.py

“stomp.py” is a Python client library for accessing messaging servers (such as ActiveMQ or RabbitMQ) using the STOMP protocol (versions 1.0, 1.1 and 1.2). It can also be run as a standalone, command-line client for testing.
Apache License 2.0
495 stars 166 forks source link

Remove traceback print_stack debugging #290

Closed spurin closed 4 years ago

spurin commented 4 years ago

Removed the traceback.print_stack() and import context -

if not self.transport.is_connected():
    import traceback
    traceback.print_stack()
    logging.debug("Not sending disconnect, already disconnected")
    return