From ceb40612145293b42724842143c138efcf29d70e Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Tue, 30 Apr 2013 01:15:52 +0000 Subject: [PATCH] Fix BTL_VERBOSE - when the MCA param change was committed, it left the base verbosity variable declared so things compiled. Sadly, the verbosity was now being set to a new variable, so debug never was output. This commit was SVN r28414. --- ompi/mca/btl/base/btl_base_frame.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ompi/mca/btl/base/btl_base_frame.c b/ompi/mca/btl/base/btl_base_frame.c index 61f8272e61..ca576b8df4 100644 --- a/ompi/mca/btl/base/btl_base_frame.c +++ b/ompi/mca/btl/base/btl_base_frame.c @@ -130,6 +130,9 @@ static int mca_btl_base_open(mca_base_open_flag_t flags) OBJ_CONSTRUCT(&mca_btl_base_modules_initialized, opal_list_t); + /* get the verbosity so that BTL_VERBOSE will work */ + mca_btl_base_verbose = opal_output_get_verbosity(ompi_btl_base_framework.framework_output); + /* All done */ return OMPI_SUCCESS; }