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 yoonghm
Recipients yoonghm
Date 2019-06-19.03:56:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
I did some checks, I discovered the following:

logging.handlers.DatagramHandler() sends data in the following format:
1. message length
2. message itself which consists of 
   a. Creation time in ASCII format
   b. Creation time in seconds, ms
   c. Filename, line no
   d. Message level
   e. Message
   f. Logger name
   etc.

Item 1. is packed using struct.pack(">L")
Item 2. is packed using pickle

The message format is not mentioned in any of the standard Python document.  Also it may not be compatible with third-party syslog message library or generator.
History
Date User Action Args
2019-06-19 03:56:13yoonghmsetrecipients: + yoonghm
2019-06-19 03:56:13yoonghmsetmessageid: <[email protected]>
2019-06-19 03:56:13yoonghmlinkissue37331 messages
2019-06-19 03:56:13yoonghmcreate