[issue6602] BaseHTTPServer log_message should log to sys.stdout

2012-05-07 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Disagreed. sys.stderr is not only for errors but all informational messages of little value (warnings, debug messages etc.). Also, logging to two different streams makes redirecting clumsier. If you want to change this, it would more useful to

[issue6602] BaseHTTPServer log_message should log to sys.stdout

2012-05-06 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- keywords: +easy versions: +Python 3.3 -Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6602 ___

[issue6602] BaseHTTPServer log_message should log to sys.stdout

2010-08-03 Thread David Stanek
David Stanek dsta...@dstanek.com added the comment: I think this is the right thing to do. To help this along I've included a patch. The codereview is also available: http://codereview.appspot.com/1697062. -- keywords: +patch nosy: +dstanek Added file:

[issue6602] BaseHTTPServer log_message should log to sys.stdout

2010-08-01 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: The OP's comments strike me as sensible, do others agree or disagree? -- components: +Library (Lib) -None nosy: +BreamoreBoy stage: - unit test needed type: - behavior versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5

[issue6602] BaseHTTPServer log_message should log to sys.stdout

2009-07-30 Thread tomkm
New submission from tomkm t...@dialogue.net: I believe that the log_message method of BaseHTTPServer should log to sys.stdout not sys.stderr, whereas log_error should log to sys.stderr instead of just delegating to log_message. I found this inconsistency when using SimpleXMLRPCServer which logs