Skip to content

Commit

Permalink
fix logging error.
Browse files Browse the repository at this point in the history
  • Loading branch information
dboulware committed Apr 11, 2024
1 parent 857c842 commit 4b4dfc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scos_actions/actions/acquire_sea_data_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ def __call__(self, sensor: Sensor, schedule_entry: dict, task_id: int):
# Now block until the data is ready
logger.debug(f"{i} Requesting object {data_ref}")
data = ray.get(data_ref)
logger.debug("ray get returned " + type(data))
logger.debug(f"ray get returned {type(data)}")
if i == 1:
# Power-vs-Time results, a tuple of arrays
data, summaries = data # Split the tuple
Expand Down

0 comments on commit 4b4dfc5

Please sign in to comment.