diff options
author | John Eckersberg <jeckersb@redhat.com> | 2008-01-28 18:55:53 -0500 |
---|---|---|
committer | John Eckersberg <jeckersb@redhat.com> | 2008-01-28 18:55:53 -0500 |
commit | 4c602438c47b2ca6317540eb59b37dfc5f354926 (patch) | |
tree | 3b41b157ca2f5499dad37080b51cedfb017dc39b /func/minion/module_loader.py | |
parent | 29cbceab3401c106e6619da58f7609fb569899df (diff) | |
download | func-4c602438c47b2ca6317540eb59b37dfc5f354926.tar.gz func-4c602438c47b2ca6317540eb59b37dfc5f354926.tar.xz func-4c602438c47b2ca6317540eb59b37dfc5f354926.zip |
debug info
Diffstat (limited to 'func/minion/module_loader.py')
-rwxr-xr-x | func/minion/module_loader.py | 3 |
1 files changed, 2 insertions, 1 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: |