我正在嘗試使用Python日誌記錄框架。除了一件事外它運作良好。在Python中設置語言環境以進行日誌記錄
此示例代碼:
import logging
FORMAT = '%(asctime)-15s %(message)s'
logging.basicConfig(format=FORMAT, level=logging.INFO)
logging.info('test')
產生這樣的輸出:
2014-03-18 11:23:43,082 test
注逗號而不是 「」從毫秒分離秒。我們在美國,應該有一個設置在某個地方來控制這個。
我可以設置什麼,以便默認語言環境信息使用句點「。」。爲小數點分隔符?
可能重複[Python記錄:在時間格式使用毫秒(http://stackoverflow.com/questions/6290739/python-logging-use-milliseconds-in-time-format) –
d'oh!這是一個重複的 –