[issue6602] BaseHTTPServer log_message should log to sys.stdout

2012-05-07 Thread Antoine Pitrou
Antoine Pitrou 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 add a facilit

[issue6602] BaseHTTPServer log_message should log to sys.stdout

2012-05-06 Thread Ezio Melotti
Changes by Ezio Melotti : -- keywords: +easy versions: +Python 3.3 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue6602] BaseHTTPServer log_message should log to sys.stdout

2010-08-03 Thread David Stanek
David Stanek 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: http://bugs.python.org/file18365/6602.patch

[issue6602] BaseHTTPServer log_message should log to sys.stdout

2010-08-01 Thread Mark Lawrence
Mark Lawrence 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 : 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 both successful (