From 2b73202169c3de6d5ac9c7f88ceff976629038f3 Mon Sep 17 00:00:00 2001 From: John Readey Date: Wed, 28 Feb 2024 10:03:40 -0800 Subject: [PATCH] add print message (#320) --- tools/link_mod.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/link_mod.py b/tools/link_mod.py index 17db7691..47b595c6 100755 --- a/tools/link_mod.py +++ b/tools/link_mod.py @@ -107,9 +107,10 @@ async def checkDataset(app, dset_key): if file_uri.startswith(prefix_old): prefix_len = len(prefix_old) new_file_uri = prefix_new + file_uri[prefix_len:] - log.info(f"replacing uri: {file_uri} with {new_file_uri}") + print(f"found uri match: {file_uri} in {dset_key}") app["matched_dset_uri"] += 1 if do_update: + print(f"replacing uri: {file_uri} with {new_file_uri}") setFileUri(dset_json, new_file_uri) # write back to storage