remove extra debug logs

This commit is contained in:
2021-01-30 01:42:27 -06:00
parent 50cea6e0b4
commit a7c61f01df
4 changed files with 0 additions and 23 deletions

View File

@ -123,8 +123,6 @@ class DBModel:
)
for ssh_authorized_key in ssh_authorized_keys:
current_app.logger.info(f"INSERT INTO vm_ssh_authorized_key (email, vm_id, ssh_public_key_name) VALUES (\"{email}\", \"{id}\", \"{ssh_authorized_key}\")")
self.cursor.execute("""
INSERT INTO vm_ssh_authorized_key (email, vm_id, ssh_public_key_name)
VALUES (%s, %s, %s)