[issue13036] time format in logging is wrong

2011-09-23 Thread Vinay Sajip
Vinay Sajip added the comment: Logging's date/time representation is supposed to conform to ISO 8601. >From ISO Standard 8601 (Third Edition, dated 2004-12-01): 4.2.2.4 Representations with decimal fraction If necessary for a particular application a decimal fraction of hour, minute or secon

[issue13036] time format in logging is wrong

2011-09-23 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +belopolsky, vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue13036] time format in logging is wrong

2011-09-23 Thread Yves Dorfsman
New submission from Yves Dorfsman : The basic time format in the logging module uses a comma instead of a dot to separate the seconds from the tenth of seconds: import logging logging.basicConfig(format='%(asctime)s %(message)s') logging.warning('hello') 2011-09-23 09:08:53,739 hel