Skip to content
Snippets Groups Projects
Commit 3afca2ba authored by Roy de Goei's avatar Roy de Goei
Browse files

SDC-470: Fix wrong parameter in logging

parent 75397aec
No related branches found
No related tags found
4 merge requests!163SDC-470: Create api-function to retrieve the minimum start time and maximum...,!158SDC-470: Create api-function to retrieve the minimum start time and maximum...,!157Master,!156SDC-470: Fix wrong parameter in logging
......@@ -51,7 +51,7 @@ def get_min_start_and_max_end_time(sas_id):
"""
min_start_time = None
max_end_time = None
logger.info("get_min_start_and_max_end_time(" + str(status_list) + ")")
logger.info("get_min_start_and_max_end_time(" + str(sas_id) + ")")
tasks = Task.objects.filter(sas_id=sas_id).filter(status='archived') + Task.objects.filter(sas_id=sas_id).filter(status='finished')
for task in tasks:
# If more entrees are found for 'processing' task, get the latest
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment