From 4c602438c47b2ca6317540eb59b37dfc5f354926 Mon Sep 17 00:00:00 2001 From: John Eckersberg Date: Mon, 28 Jan 2008 18:55:53 -0500 Subject: debug info --- func/minion/module_loader.py | 3 ++- func/minion/modules/netapp/vol/clone.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'func/minion') 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): """ -- cgit