Changes between Initial Version and Version 1 of Ticket #27687
- Timestamp:
- Jan 5, 2017, 6:55:27 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #27687
- Property Resolution → invalid
- Property Status new → closed
-
Ticket #27687 – Description
initial v1 3 3 I faced some problem using log formatter. 4 4 5 I want to present date format of log like '%Y-%m-%d %H:%M:%S.%f%z' but %f is not work.5 I want to present date format of log like `'%Y-%m-%d %H:%M:%S.%f%z'` but `%f` doesn't work. 6 6 7 7 My formatters setting is like this. 8 9 ''' 8 {{{ 10 9 'formatters': { 11 10 'verbose': { … … 17 16 }, 18 17 }, 19 ''' 18 }}} 19 The log `%(asctime)s` is printed "2017-01-05 13:54:24.f+0900" 20 20 21 The log %(asctime)s is printed "2017-01-05 13:54:24.f+0900" 22 23 Is this bug? or intented behavior? 21 Is this bug? or intended behavior?