diff --git a/main.py b/main.py index 2f8cf28c..fb4fc41e 100644 --- a/main.py +++ b/main.py @@ -4,7 +4,7 @@ # Clean one-liner: set level and output mode together setup_logging(output="both") - +print("Logging is set up.") conn_str = os.getenv("DB_CONNECTION_STRING") conn = connect(conn_str) cursor = conn.cursor() @@ -15,4 +15,4 @@ print(f"Database ID: {row[0]}, Name: {row[1]}") cursor.close() -conn.close() \ No newline at end of file +conn.close()