add logging

This commit is contained in:
Lucas Mathews
2024-05-29 21:40:45 +02:00
parent 53f5eb49e2
commit c2812aa2c4
7 changed files with 38 additions and 26 deletions

View File

@@ -119,6 +119,7 @@ session.commit()
admin_client_id = session.query(Client.client_id).filter(Client.administrator == 1).first()[0]
# Print the client_id of the administrator account
print(f"The client_id of the administrator account of this test database is: {admin_client_id}. The password is: Happymeal1")
print(f"The client_id of the administrator account of this test database is: {admin_client_id}")
print("The password is: Happymeal1")
session.close()