From 840c42209c78f9399cf1d5b659a08b1d45e50c94 Mon Sep 17 00:00:00 2001 From: Laurent Date: Thu, 8 May 2025 09:30:00 +0200 Subject: [PATCH] adds more logging --- api/views.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/views.py b/api/views.py index 765cef7..d9d390a 100644 --- a/api/views.py +++ b/api/views.py @@ -410,6 +410,8 @@ def xls_to_csv(request): file_name = default_storage.save(file_path, ContentFile(uploaded_file.read())) logger.info(f'file saved at {file_name}') + full_path = default_storage.path(file_name) + logger.info(f'full_path = {full_path}') # Check available sheets and look for 'inscriptions' xls = pd.ExcelFile(file_name)