Minor logging formatting change.

This commit is contained in:
ForeverPyrite
2024-12-11 00:01:37 -05:00
parent 48004df115
commit b61e4e219e

View File

@@ -63,7 +63,7 @@ def log(str):
file.write(str)
except FileNotFoundError:
os.system("touch logs/log.md")
log("#### log.md was not found, so it was just touched.")
log("\n#### log.md was not found, so it was just touched.\n")
### OpenAI Config
@@ -131,4 +131,4 @@ def get_auto_transcript(video_id):
output_stream = StreamOutput()
log(f"# Main initilized at {datetime.now(pytz.timezone('America/New_York')).strftime('%Y-%m-%d %H:%M:%S')}. Presumeably application starting.")
log(f"\n# Main initilized at {datetime.now(pytz.timezone('America/New_York')).strftime('%Y-%m-%d %H:%M:%S')}. Presumeably application starting.\n")