diff --git a/app/frontend/src/components/FileStatus/FileStatus.tsx b/app/frontend/src/components/FileStatus/FileStatus.tsx index 32173e7c7..12601d5f1 100644 --- a/app/frontend/src/components/FileStatus/FileStatus.tsx +++ b/app/frontend/src/components/FileStatus/FileStatus.tsx @@ -72,10 +72,10 @@ export const FileStatus = ({ className }: Props) => { timeframe = 24; break; case "7days": - timeframe = 10080; + timeframe = 168; break; case "30days": - timeframe = 43200; + timeframe = 720; break; default: timeframe = 4; diff --git a/functions/shared_code/status_log.py b/functions/shared_code/status_log.py index 3adf87c78..2e639a098 100644 --- a/functions/shared_code/status_log.py +++ b/functions/shared_code/status_log.py @@ -218,7 +218,6 @@ def update_document_state(self, document_path, status, state=State.PROCESSING): """Updates the state of the document in the storage""" try: document_id = self.encode_document_id(document_path) - logging.info(f"{state_str} DocumentID - {document_id}") logging.info(f"{status} DocumentID - {document_id}") if self._log_document.get(document_id, "") != "": json_document = self._log_document[document_id]