Am 27.11.2005 um 22:06 schrieb stava:
Well, thanks for the input, couldn't get it to work though. I put a few
"print >> sys.stderr..." in there, shows up as per usual when running
the django server, but they don't show up anywhere in the apache logs.
Maybe there's some httpd.conf dependency, I'm running SuSE 9.3 with
minimal tweaks.

You need to explicitly flush the output as it's being buffered:

  print >> sys.stderr, "Hey"
  sys.stderr.flush()

Cheers,
Chris

--
Christopher Lenz
  cmlenz at gmx.de
  http://www.cmlenz.net/


Reply via email to