From 339720ecda6b351251ff3e793cd29b4828990c03 Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Thu, 16 May 2019 12:44:29 -0700 Subject: [PATCH] More cli debug logging --- inquisitor/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/inquisitor/cli.py b/inquisitor/cli.py index a2d96f6..712c021 100644 --- a/inquisitor/cli.py +++ b/inquisitor/cli.py @@ -52,6 +52,7 @@ def update(args): for name in names: if name not in source_names: logger.error("Source not found: {}".format(name)) + logger.debug("Known sources: {}".format(source_names)) else: names = source_names dungeon = Dungeon(args.dungeon)