From cbf2944a7633c89b268eb0acbcf9c8b2c02c8069 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Sun, 4 Aug 2024 13:22:00 -0700 Subject: [PATCH] Add log statement when validating GOG ids against umu database --- tools/check_gamefixes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/check_gamefixes.py b/tools/check_gamefixes.py index c2842cae..fd0c5093 100644 --- a/tools/check_gamefixes.py +++ b/tools/check_gamefixes.py @@ -126,6 +126,7 @@ def check_gogfixes(project: Path, url: str, api: ApiEndpoint) -> None: print(f'Validating GOG app ids against "{host}"...', file=sys.stderr) for obj in ijson.items(r, 'item'): if (appid := str(obj['umu_id']).removeprefix('umu-')) in appids: + print(f'Removing GOG app id: "{appid}"', file=sys.stderr) appids.remove(appid) if not appids: break