This commit is contained in:
Lucas - BLOCK33 2025-04-11 11:52:08 -04:00 committed by GitHub
commit a762dc2f19
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -192,7 +192,13 @@ def prompt_worker(q, server_instance):
current_time = time.perf_counter()
execution_time = current_time - execution_start_time
logging.info("Prompt executed in {:.2f} seconds".format(execution_time))
# Log Time in a more readable way after 10 minutes
if execution_time > 600:
execution_time = time.strftime("%H:%M:%S", time.gmtime(execution_time))
logging.info(f"Prompt executed in {execution_time}")
else:
logging.info("Prompt executed in {:.2f} seconds".format(execution_time))
flags = q.get_flags()
free_memory = flags.get("free_memory", False)