From: Martin Quinson Date: Mon, 24 Apr 2017 06:35:13 +0000 (+0200) Subject: fix my late sunday commit X-Git-Tag: v3.16~317 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/26aef8bebdc790176289d442e29cc04aac516a5c fix my late sunday commit --- diff --git a/src/smpi/smpi_global.cpp b/src/smpi/smpi_global.cpp index d053b925b6..39d769a62e 100644 --- a/src/smpi/smpi_global.cpp +++ b/src/smpi/smpi_global.cpp @@ -578,7 +578,7 @@ int smpi_main(const char* executable, int argc, char *argv[]) "Error while copying %s: only %zd bytes copied instead of %ld (errno: %d -- %s)", target_executable.c_str(), sent_size, fdin_size, errno, strerror(errno)); #else - XBT_VERBOSE("Copy %d bytes into %s", static_cast(fdin_size), target_executable.c_str()); + XBT_VERB("Copy %d bytes into %s", static_cast(fdin_size), target_executable.c_str()); const int bufsize = 1024 * 1024 * 4; char buf[bufsize]; while (int got = read(fdin, buf, bufsize)) {