From: Martin Quinson Date: Sun, 23 Apr 2017 20:56:35 +0000 (+0200) Subject: reduce the verbosity of that message X-Git-Tag: v3.16~318 X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/b607723dc69ada062d044b5525b132584115a70a reduce the verbosity of that message --- diff --git a/src/smpi/smpi_global.cpp b/src/smpi/smpi_global.cpp index 6fc5d74971..d053b925b6 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_WARN("Copy %d bytes into %s", static_cast(fdin_size), target_executable.c_str()); + XBT_VERBOSE("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)) {