From b61e4e219eec2f00b213af764615e1bd5c850da5 Mon Sep 17 00:00:00 2001 From: ForeverPyrite Date: Wed, 11 Dec 2024 00:01:37 -0500 Subject: [PATCH] Minor logging formatting change. --- app/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index 13157a0..a221816 100644 --- a/app/main.py +++ b/app/main.py @@ -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.") \ No newline at end of file +log(f"\n# Main initilized at {datetime.now(pytz.timezone('America/New_York')).strftime('%Y-%m-%d %H:%M:%S')}. Presumeably application starting.\n") \ No newline at end of file