misc: Add some extra info and debug statements.
authorMatthijs Kooijman <matthijs@stdin.nl>
Thu, 10 Jun 2010 07:11:32 +0000 (09:11 +0200)
committerMatthijs Kooijman <matthijs@stdin.nl>
Thu, 10 Jun 2010 07:11:32 +0000 (09:11 +0200)
src/lib/backupninja/action.py
src/lib/backupninja/handlers/__init__.py

index 66fc5f364830f5b5221db05e44eab691a6115534..e110d933d2aa521cbc7b334f3ad2bb072c28758f 100644 (file)
@@ -33,6 +33,7 @@ def run_all_actions(opts, global_config):
     opts are the parsed commandline options, global_config is the parsed
     global configuration.
     """
+    log.info('Running all actions')
     try:
         actions = config.list_actions(opts)
     except OSError, e:
@@ -49,6 +50,7 @@ def run_action(action, opts, global_config):
     Run a single action. opts are the parsed commandline options,
     global_config is the parsed global configuration.
     """
+    log.info('Running action "%s"', action)
     # Split the action filename
     parts = action.split('.', 2)
     if (len(parts) < 2):
index 990c4717a860d1c48d5c02c4716f37d5fca17b5c..7603afd0a1bfbe3c29cb1bed2c101cfe9514dcd9 100644 (file)
@@ -50,12 +50,14 @@ def create_handler(ty, conf):
     modname = 'backupninja.handlers.%s' % ty
     # Load the handler if it is not loaded yet
     if not modname in sys.modules:
+        log.debug('Loading handler for type "%s"', ty)
         try:
             __import__(modname, globals(), locals(), [])
         except ImportError, e:
             # Add some extra info, since the default exception does not
             # show the full module name.
             raise ImportError('Cannot load module %s: %s' % (modname, e))
+        log.debug('Loaded handler for type "%s" from "%s"', ty, sys.modules[modname].__file__)
     # Get the module from the module table
     module = sys.modules[modname]