Path: csiph.com!au2pb.net!feeder.erje.net!1.eu.feeder.erje.net!newsfeed.fsmpi.rwth-aachen.de!newsfeed.straub-nv.de!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!nzpost1.xs4all.net!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.048 X-Spam-Evidence: '*H*': 0.91; '*S*': 0.01; 'messages.': 0.04; 'socket': 0.07; 'subject:Getting': 0.09; 'app': 0.16; 'to:name :python-list@python.org': 0.20; 'appears': 0.23; "i've": 0.25; 'logging': 0.27; 'message-id:@mail.gmail.com': 0.27; 'package.': 0.27; 'asked': 0.29; 'received:google.com': 0.35; 'there': 0.36; 'to:addr:python-list': 0.36; 'log': 0.38; 'data': 0.39; 'to:addr:python.org': 0.40; 'receive': 0.71; 'subject:over': 0.84; 'subject:response': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=UYkQe5DCCieccfz4L+YjOcKCQ98109Ok6t68ky/iXQU=; b=BYbVpVIbTDNgwPmAv5Z6ZvhWuwHG3k/HHLtfomEfl6i/z/JpV4Q8YyPd8BEQUehSik ucDmfvBFaCzD2ai4ae+ueJyN8QhXpjnqtLYffO9M9I68zZMuJ2IQoBzi8lvFOpebsmoS mQWQmUA7ANxEw4P8MHBZOkXJNNRTZmN5XumevvblA2TAymjQlTK6MygVSKAI1netKGGj /S/Jy00jGgM6wP6/gWpy1NRtvsCBwXNFyyPliQTJX3GBbikqyQSSA9B3+nFdYfNtJbUB AW7mwIEwkul7Xec6LZNSdnPvtAnRXgcaVqTudHWshXiCvcNw8AAJSsNZP6e6Wf6oLZ2I f2Fg== MIME-Version: 1.0 X-Received: by 10.140.85.165 with SMTP id n34mr43286197qgd.83.1441795035779; Wed, 09 Sep 2015 03:37:15 -0700 (PDT) Date: Wed, 9 Sep 2015 06:37:15 -0400 Subject: Getting response over logging socket From: Larry Martell To: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 5 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1441795044 news.xs4all.nl 23790 [2001:888:2000:d::a6]:34507 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:96181 I have an app that uses the logging package with a SocketHandler to send messages. Now I've been asked to change it so that it can receive a response for each log message sent. It appears there is no way to do this with logging package. Is that true? Can I not receive data over a socket used in a logging handler?