Use localtime instead of gmtime for message logged
C++ logging and python logging both use localtime(), however this one method uses gmtime() which causes the log of a run to show timestamps that can be hours apart. Let's be consistent as use localtime() everywhere.
Loading
Please sign in to comment