This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Omer.Katz
Recipients Omer.Katz
Date 2014-06-19.08:12:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403165528.71.0.804407602636.issue21807@psf.upfronthosting.co.za>
In-reply-to
Content
import logging
import logging.handlers
import socket

logger = logging.getLogger('mylogger')
handler = logging.handlers.SysLogHandler(('****', logging.handlers.SYSLOG_TCP_PORT), socktype=socket.SOCK_STREAM)
formatter = logging.Formatter('%(name)s: [%(levelname)s] %(message)s')
handler.setFormatter(formatter)

logger.addHandler(handler)

logger.info("TEST 1")
logger.info("TEST 2")

I have verified that this code only sends 'TEST 1' to Splunk and syslog-ng on both Python 2.7 and Python 3.4. After that, the connection appears closed. UDP on the other hand works just fine.
History
Date User Action Args
2014-06-19 08:12:08Omer.Katzsetrecipients: + Omer.Katz
2014-06-19 08:12:08Omer.Katzsetmessageid: <1403165528.71.0.804407602636.issue21807@psf.upfronthosting.co.za>
2014-06-19 08:12:08Omer.Katzlinkissue21807 messages
2014-06-19 08:12:08Omer.Katzcreate