summaryrefslogtreecommitdiffstats
path: root/func/overlord/inventory.py
diff options
context:
space:
mode:
Diffstat (limited to 'func/overlord/inventory.py')
-rwxr-xr-xfunc/overlord/inventory.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/func/overlord/inventory.py b/func/overlord/inventory.py
index 8bb5942..28a269e 100755
--- a/func/overlord/inventory.py
+++ b/func/overlord/inventory.py
@@ -98,7 +98,12 @@ class FuncInventory(object):
if options.verbose:
print "---- scanning module: %s" % module_name
host_module = getattr(func_client.Client(host,noglobs=True),module_name)
+ if options.verbose:
+ print "--- DEBUG: remote module: %s" % host_module
+
remote_methods = host_module.list_methods()
+ if options.verbose:
+ print "--- DEBUG: available remote methods: %s" % remote_methods
for remote_method in remote_methods:
if ("all" in filtered_function_list) or (remote_method in filtered_function_list):
if options.verbose: