Index: trunk/backups/backup.py
===================================================================
--- trunk/backups/backup.py	(revision 40971)
+++ trunk/backups/backup.py	(revision 40973)
@@ -268,5 +268,5 @@
                 os.remove(log_file)
             with open(log_file, "w+") as lf:
-                lf.write(f'Run started at: {datetime.date.today().strftime("%Y_%b_%d_%H:%M")}\n')
+                lf.write(f'Run started at: {datetime.datetime.now().strftime("%Y_%b_%d_%H:%M")}\n')
 
     def _write_end_log(self):
@@ -277,5 +277,5 @@
                 return
             with open(log_file, "a") as lf:
-                lf.write(f'Last successful backup completed at : {datetime.date.today().strftime("%Y_%b_%d_%H:%M")}\n')
+                lf.write(f'Last successful backup completed at : {datetime.datetime.now().strftime("%Y_%b_%d_%H:%M")}\n')
 
 
