Part of twisted.python.log View Source View In Hierarchy
| Instance Variables | timeFormat | If not None, the format string passed to strftime().
(type: str or NoneType
) |
| Method | __init__ | Undocumented |
| Method | getTimezoneOffset | Return the current local timezone offset from UTC. |
| Method | formatTime | Format the given UTC value as a string representing that time in the local timezone. |
| Method | emit | Undocumented |
| Method | start | Start observing log events. |
| Method | stop | Stop observing log events. |
| Parameters | when | POSIX (ie, UTC) timestamp for which to find the offset.
(type: int
) |
| Returns | The number of seconds offset from UTC. West is positive, east is
negative.
(type: int
) | |
Format the given UTC value as a string representing that time in the local timezone.
By default it's formatted as a ISO8601-like string (ISO8601 date and ISO8601 time separated by a space). It can be customized using thetimeFormat attribute, which will be used as input for the
underlying time.strftime call.
| Parameters | when | POSIX (ie, UTC) timestamp for which to find the offset.
(type: int
) |
| Returns | (type: str
) | |