aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorlloyd <[email protected]>2011-04-29 15:26:04 +0000
committerlloyd <[email protected]>2011-04-29 15:26:04 +0000
commit96043ac4c4fdd4e7c23143097922843552b4aa9a (patch)
tree0009e0c64f15a770e5bf0f00dc9f70a68588f80e /configure.py
parent5f1911e20975e743531b60c01e3dbde93f4b2400 (diff)
Log the chosen MP module
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py3
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]