shorten URL message text

This commit is contained in:
Axel Kohlmeyer
2022-04-22 17:00:55 -04:00
parent 13664a0185
commit 01e7530902

View File

@ -139,9 +139,7 @@ void utils::fmtargs_logmesg(LAMMPS *lmp, fmt::string_view format, fmt::format_ar
std::string utils::errorurl(int errorcode)
{
return fmt::format(
"\nFor more information please go to https://docs.lammps.org/Errors_details.html#err{:04d}",
errorcode);
return fmt::format("\nFor more information see https://docs.lammps.org/err{:04d}", errorcode);
}
void utils::flush_buffers(LAMMPS *lmp)