summaryrefslogtreecommitdiffstats
path: root/func/minion
diff options
context:
space:
mode:
authorJohn Eckersberg <jeckersb@redhat.com>2008-01-28 18:55:53 -0500
committerJohn Eckersberg <jeckersb@redhat.com>2008-01-28 18:55:53 -0500
commit4c602438c47b2ca6317540eb59b37dfc5f354926 (patch)
tree3b41b157ca2f5499dad37080b51cedfb017dc39b /func/minion
parent29cbceab3401c106e6619da58f7609fb569899df (diff)
downloadthird_party-func-4c602438c47b2ca6317540eb59b37dfc5f354926.tar.gz
third_party-func-4c602438c47b2ca6317540eb59b37dfc5f354926.tar.xz
third_party-func-4c602438c47b2ca6317540eb59b37dfc5f354926.zip
debug info
Diffstat (limited to 'func/minion')
-rwxr-xr-xfunc/minion/module_loader.py3
-rw-r--r--func/minion/modules/netapp/vol/clone.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/func/minion/module_loader.py b/func/minion/module_loader.py
index 3068ea8..05bb3bd 100755
--- a/func/minion/module_loader.py
+++ b/func/minion/module_loader.py
@@ -80,11 +80,12 @@ def load_modules(blacklist=None):
try:
# Auto-detect and load all FuncModules
+ logger.debug("Trying to load modues.%s" % mod_imp_name)
blip = __import__("modules.%s" % ( mod_imp_name), globals(), locals(), [mod_imp_name])
for obj in dir(blip):
attr = getattr(blip, obj)
if isclass(attr) and issubclass(attr, func_module.FuncModule):
- logger.debug("Loading %s module" % attr)
+ logger.debug("Loading %s module flibby" % attr)
mods[mod_imp_name] = attr()
except ImportError, e:
diff --git a/func/minion/modules/netapp/vol/clone.py b/func/minion/modules/netapp/vol/clone.py
index 510c37d..9f6b297 100644
--- a/func/minion/modules/netapp/vol/clone.py
+++ b/func/minion/modules/netapp/vol/clone.py
@@ -21,7 +21,7 @@ class Clone(func_module.FuncModule):
# Update these if need be.
version = "0.0.1"
api_version = "0.0.1"
- description = "Interface to the 'vol' command"
+ description = "Interface to the 'vol clone' command"
def create(self, filer, args):
"""