diff --git a/cosmos/operators/local.py b/cosmos/operators/local.py index 0f7fa7f5f..efc022bf6 100644 --- a/cosmos/operators/local.py +++ b/cosmos/operators/local.py @@ -406,6 +406,7 @@ def get_datasets(self, source: Literal["inputs", "outputs"]) -> list[Dataset]: for output in getattr(completed, source): dataset_uri = output.namespace + "/" + output.name uris.append(dataset_uri) + logger.debug("URIs to be converted to Dataset: %s", uris) return [Dataset(uri) for uri in uris] def register_dataset(self, new_inlets: list[Dataset], new_outlets: list[Dataset]) -> None: