
Nov. 5, 2009
1:18 p.m.
On 01:20 pm, namanvit@gmail.com wrote:
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
How about installing two log observers? 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