Fix line overrun in log file
authorKevin Boyd <kevin44boyd@gmail.com>
Wed, 8 Apr 2020 02:20:30 +0000 (19:20 -0700)
committerKevin Boyd <kevin44boyd@gmail.com>
Wed, 8 Apr 2020 02:23:37 +0000 (19:23 -0700)
src/gromacs/taskassignment/reportgpuusage.cpp

index 48d825f282aa0ed4752f24cef1ef65df7f919cd2..bdcde8beb18ea8cc4512930edf7fb42a09915f6b 100644 (file)
@@ -138,7 +138,7 @@ void reportGpuUsage(const MDLogger&                   mdlog,
         output += gmx::formatString(
                 "PP tasks will do (non-perturbed) short-ranged%s interactions on the GPU\n",
                 useGpuForBonded ? " and most bonded" : "");
-        output += gmx::formatString("PP task will update and constrain coordinates on the %s",
+        output += gmx::formatString("PP task will update and constrain coordinates on the %s\n",
                                     useGpuForUpdate ? "GPU" : "CPU");
         if (pmeRunMode == PmeRunMode::Mixed)
         {