Skip to content

Commit

Permalink
Add debug message when retrieving processed data
Browse files Browse the repository at this point in the history
  • Loading branch information
aromanielloNTIA committed Dec 27, 2023
1 parent 4f0c8dd commit 832c1b6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scos_actions/actions/acquire_sea_data_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,7 @@ def __call__(self, schedule_entry, task_id):
for i, data_ref in enumerate(channel_data_refs):
# Now block until the data is ready
data = ray.get(data_ref)
logger.debug(f"Retrieved data: {i}\n\t{data}")
if i == 1:
# Power-vs-Time results, a tuple of arrays
data, summaries = data # Split the tuple
Expand Down

0 comments on commit 832c1b6

Please sign in to comment.