Re: daemon.DaemonContext and logging

2014-05-22 Thread Mark H Harris
On 5/22/14 10:28 AM, wo...@4amlunch.net wrote: On Saturday, April 10, 2010 11:52:41 PM UTC-4, Ben Finney wrote: pid = daemon.pidlockfile.TimeoutPIDLockFile( "/tmp/dizazzo-daemontest.pid", 10) Has pidlockfile been removed? (1.6) -brian "Have you released the inertial dampener?

Re: daemon.DaemonContext and logging

2014-05-22 Thread wonko
On Saturday, April 10, 2010 11:52:41 PM UTC-4, Ben Finney wrote: > pid = daemon.pidlockfile.TimeoutPIDLockFile( > "/tmp/dizazzo-daemontest.pid", 10) Has pidlockfile been removed? (1.6) -brian -- https://mail.python.org/mailman/listinfo/python-list

Re: daemon.DaemonContext and logging

2010-04-10 Thread Ben Finney
Sean DiZazzo writes: > I'm finally getting around to trying out the python-daemon module and > have hit a wall. I'm trying to set up logging inside of the "with > daemon.DaemonContext" block. But when I try to use a logger inside > the block it throws an error: Specifically, it's throwing an e

New user documentation for ‘python-daemon ’ (was: daemon.DaemonContext and logging)

2009-12-10 Thread Ben Finney
Sean DiZazzo writes: > On Dec 10, 5:37 pm, Sean DiZazzo wrote: > > I'm finally getting around to trying out the python-daemon module > > and have hit a wall.  I'm trying to set up logging inside of the > > "with daemon.DaemonContext" block.  But when I try to use a logger > > inside the block it

Re: daemon.DaemonContext and logging

2009-12-10 Thread Sean DiZazzo
On Dec 10, 5:37 pm, Sean DiZazzo wrote: > I'm finally getting around to trying out the python-daemon module and > have hit a wall.  I'm trying to set up logging inside of the "with > daemon.DaemonContext" block.  But when I try to use a logger inside > the block it throws an error: Got it! The D

daemon.DaemonContext and logging

2009-12-10 Thread Sean DiZazzo
I'm finally getting around to trying out the python-daemon module and have hit a wall. I'm trying to set up logging inside of the "with daemon.DaemonContext" block. But when I try to use a logger inside the block it throws an error: ~~ from __future__ import with_