Add logging to speaking grading.

This commit is contained in:
Cristiano Ferreira
2024-05-19 15:38:57 +01:00
parent 5f7fe23afd
commit c77f7178ae
2 changed files with 80 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ def download_firebase_file(bucket_name, source_blob_name, destination_file_name)
bucket = storage_client.bucket(bucket_name)
blob = bucket.blob(source_blob_name)
blob.download_to_filename(destination_file_name)
logging.info(f"File uploaded to {destination_file_name}")
logging.info(f"File downloaded to {destination_file_name}")
return destination_file_name