diff --git a/src/balance.cpp b/src/balance.cpp index fa4e68a8b8..a6db94ddd1 100644 --- a/src/balance.cpp +++ b/src/balance.cpp @@ -379,7 +379,7 @@ void Balance::command(int narg, char **arg) bigint nblocal = atom->nlocal; MPI_Allreduce(&nblocal,&natoms,1,MPI_LMP_BIGINT,MPI_SUM,world); if (natoms != atom->natoms) - error->all(FLERR,"Lost atoms via balance: original {} current {}", + error->all(FLERR,"Lost atoms via balance: original {} current {}"+utils::errorurl(08), atom->natoms,natoms); // imbfinal = final imbalance diff --git a/src/change_box.cpp b/src/change_box.cpp index eb7ce7f136..023208d766 100644 --- a/src/change_box.cpp +++ b/src/change_box.cpp @@ -381,7 +381,7 @@ void ChangeBox::command(int narg, char **arg) MPI_Allreduce(&nblocal,&natoms,1,MPI_LMP_BIGINT,MPI_SUM,world); if (natoms != atom->natoms && comm->me == 0) error->warning(FLERR,"Lost atoms via change_box: original {} " - "current {}", atom->natoms,natoms); + "current {}"+utils::errorurl(08),atom->natoms,natoms); } /* ---------------------------------------------------------------------- diff --git a/src/displace_atoms.cpp b/src/displace_atoms.cpp index 5ecf5a2c9e..9f32175815 100644 --- a/src/displace_atoms.cpp +++ b/src/displace_atoms.cpp @@ -364,7 +364,7 @@ void DisplaceAtoms::command(int narg, char **arg) MPI_Allreduce(&nblocal,&natoms,1,MPI_LMP_BIGINT,MPI_SUM,world); if (natoms != atom->natoms && comm->me == 0) error->warning(FLERR,"Lost atoms via displace_atoms: original {} " - "current {}",atom->natoms,natoms); + "current {}"+utils::errorurl(08),atom->natoms,natoms); } /* ---------------------------------------------------------------------- diff --git a/src/thermo.cpp b/src/thermo.cpp index ca60b48687..9ba4a03b94 100644 --- a/src/thermo.cpp +++ b/src/thermo.cpp @@ -509,12 +509,12 @@ bigint Thermo::lost_check() // error message if (lostflag == Thermo::ERROR) - error->all(FLERR, "Lost atoms: original {} current {}", atom->natoms, ntotal[0]); + error->all(FLERR, "Lost atoms: original {} current {}" + utils::errorurl(08), atom->natoms, ntotal[0]); // warning message if (comm->me == 0) - error->warning(FLERR, "Lost atoms: original {} current {}", atom->natoms, ntotal[0]); + error->warning(FLERR, "Lost atoms: original {} current {}" + utils::errorurl(08), atom->natoms, ntotal[0]); // reset total atom count