2009/1/20 gert <[email protected]>: > > it was > > import sys > print (s,file=sys.stderr) > > that did the cutting in the log file, using open did not do any > cutting in string mode as in binary mode.
The problem may be that sys.stderr wraps Apache error log functions. Those Apache error log functions will only print out stuff up to an embedded null character, so potentially can truncate information. Try using: print (repr(s),file=sys.stderr) It isn't good that information is lost, but not really anything I can do about it. I should log a ticket about it though to record caveat. What I might be able to do is bypass the Apache log functions and go direct to error log file reference which is in Apache server structure. Graham --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en -~----------~----~----~----~------~----~------~--~---
