I note with interest that Python logging class can emit a relative timestamp:
https://docs.python.org/3/library/logging.html#logrecord-attributes
It is provided with the attribute relativeCreated, but this is documented as:
Time in milliseconds when the LogRecord was created, relative to the time the logging module was loaded.
I'd wondering there is a way to reset this reference time (which by default is when the logging module was loaded).
I'd like to reset that reference time and see times relative to the point in time I did the reset.