Thanks. that does the job for me very well.
On 01:20 pm, namanvit@gmail.com wrote:How about installing two log observers?
>I ll try to rephrase it better:
>
>I simply want the print statement to appear in both the log file and
>the
>console.
>print("goes in both") -> the log also gets this and the console also.
>
>Thanks
from sys import stdout
from twisted.python.log import FileLogObserver, startLogging,
addObserver, msg
# First, startLogging to capture stdout
startLogging(stdout)
# Now add an observer that logs to a file
addObserver(FileLogObserver(file("foo.log")).emit)
msg("Hello, world")
print "Goodbye, world"
Jean-Paul
_______________________________________________
Twisted-Python mailing list
Twisted-Python@twistedmatrix.com
http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python