Skip to content

Commit

Permalink
feat: custom options and valueprovider logging
Browse files Browse the repository at this point in the history
  • Loading branch information
CedrickArmel committed Oct 12, 2024
1 parent c3c55b1 commit 5c874d7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/neuripsadc/etl/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,10 @@ def process(self):
"binning",
]
for arg in args:
logging.info(f"""{arg} : {RuntimeValueProvider.get_value(arg, str, "")}""")
value = RuntimeValueProvider.get_value(arg, str, "")
if value is None:
value = "No value provided"
logging.info(f"Argument '{arg}' has value: {value}")


def run_pipeline(argv: list | None = None, save_session: bool = True):
Expand Down

0 comments on commit 5c874d7

Please sign in to comment.