Python logger shows as below :
consoleformatter = logging.Formatter('%(asctime)s [%(levelname)-8s] %(message)s')
I want to read my log file timestamp to make more sense of it. Cant get a headstart to convert the time, though this is the format it's specified in.
Say for example my log says timestamp : 0063730209 How do I read it in human readable form?
Thanks