From 04c3942c46959197fd3391b439268c5b24f3eb4b Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Tue, 25 Sep 2018 12:34:07 +0200 Subject: [PATCH 1/1] send warning here instead of debug --- src/smpi/bindings/smpi_mpi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smpi/bindings/smpi_mpi.cpp b/src/smpi/bindings/smpi_mpi.cpp index 93aead09b8..38caaaa547 100644 --- a/src/smpi/bindings/smpi_mpi.cpp +++ b/src/smpi/bindings/smpi_mpi.cpp @@ -35,7 +35,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_mpi, smpi, "Logging specific to SMPI ,(mpi) char error_string[MPI_MAX_ERROR_STRING]; \ int error_size; \ PMPI_Error_string(ret, error_string, &error_size); \ - XBT_DEBUG("%s - returned %.*s instead of MPI_SUCCESS", __func__, error_size,error_string); \ + XBT_WARN("%s - returned %.*s instead of MPI_SUCCESS", __func__, error_size,error_string); \ } \ XBT_VERB("SMPI - Leaving %s", __func__); \ return ret; \ -- 2.20.1