From 15b4b09fac08037a2cf0a41e49d45bafe4ff99ea Mon Sep 17 00:00:00 2001 From: Mark Abraham Date: Tue, 4 Sep 2018 22:12:43 +0200 Subject: [PATCH] Be quieter when failing to detect GPUs A normal mdrun user should not be informed on the terminal that no GPUs could be detected. That information is in the log file. Fixes #2635 Change-Id: Idd254411c211c0fdef11d685ca1be2071aa6e281 --- src/gromacs/hardware/detecthardware.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gromacs/hardware/detecthardware.cpp b/src/gromacs/hardware/detecthardware.cpp index a36d79579b..81a8f98d73 100644 --- a/src/gromacs/hardware/detecthardware.cpp +++ b/src/gromacs/hardware/detecthardware.cpp @@ -142,7 +142,7 @@ static void gmx_detect_gpus(const gmx::MDLogger &mdlog, gpusCanBeDetected = canDetectGpus(&errorMessage); if (!gpusCanBeDetected) { - GMX_LOG(mdlog.warning).asParagraph().appendTextFormatted( + GMX_LOG(mdlog.info).asParagraph().appendTextFormatted( "NOTE: Detection of GPUs failed. The API reported:\n" " %s\n", " GROMACS cannot run tasks on a GPU.", -- 2.11.4.GIT