X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fprojects%2Fbackupninja.git;a=blobdiff_plain;f=src%2Flib%2Fbackupninja%2Faction.py;h=e110d933d2aa521cbc7b334f3ad2bb072c28758f;hp=66fc5f364830f5b5221db05e44eab691a6115534;hb=52ce78d1bf9e1344b9fc27cae81c158580579b34;hpb=5da4fb89ab2bdad92435be2b4ba38061b2834a36 diff --git a/src/lib/backupninja/action.py b/src/lib/backupninja/action.py index 66fc5f3..e110d93 100644 --- a/src/lib/backupninja/action.py +++ b/src/lib/backupninja/action.py @@ -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):