apply new logmesg() overload to a bunch of cases.

This commit is contained in:
Axel Kohlmeyer
2021-04-21 22:53:41 -04:00
parent 0cf1252f1f
commit d2cdb318ab
42 changed files with 259 additions and 297 deletions

View File

@ -600,11 +600,11 @@ void Set::command(int narg, char **arg)
if (comm->me == 0) {
if (strcmp(arg[origarg],"cc") == 0)
utils::logmesg(lmp,fmt::format(" {} settings made for {} index {}\n",
allcount,arg[origarg],arg[origarg+1]));
utils::logmesg(lmp," {} settings made for {} index {}\n",
allcount,arg[origarg],arg[origarg+1]);
else
utils::logmesg(lmp,fmt::format(" {} settings made for {}\n",
allcount,arg[origarg]));
utils::logmesg(lmp," {} settings made for {}\n",
allcount,arg[origarg]);
}
}