diff options
author | lloyd <[email protected]> | 2011-04-29 15:26:04 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-04-29 15:26:04 +0000 |
commit | 96043ac4c4fdd4e7c23143097922843552b4aa9a (patch) | |
tree | 0009e0c64f15a770e5bf0f00dc9f70a68588f80e /configure.py | |
parent | 5f1911e20975e743531b60c01e3dbde93f4b2400 (diff) |
Log the chosen MP module
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.py b/configure.py index a29396a7c..019b68b54 100755 --- a/configure.py +++ b/configure.py @@ -1204,6 +1204,9 @@ def choose_modules_to_use(modules, archinfo, options): logging.info('Skipping, %s - %s' % ( reason, ' '.join(disabled_mods))) + logging.info('Using MP module ' + + ' '.join(filter(lambda m: m.startswith('mp_'), to_load))) + logging.debug('Loading modules %s', ' '.join(sorted(to_load))) return [modules[mod] for mod in to_load] |