From fa07f64b81a39f278496145ceb4cb2d995039aa2 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Tue, 9 Jun 2020 15:06:13 -0400 Subject: [PATCH] add missing linefeed --- src/potential_file_reader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/potential_file_reader.cpp b/src/potential_file_reader.cpp index 9b11c4014f..2ec7908ae3 100644 --- a/src/potential_file_reader.cpp +++ b/src/potential_file_reader.cpp @@ -150,7 +150,7 @@ TextFileReader * PotentialFileReader::open_potential(const std::string& path) { date = utils::get_potential_date(filepath, filetype); if(!date.empty()) { - utils::logmesg(lmp, fmt::format("Reading potential file {} with DATE: {}", filename, date)); + utils::logmesg(lmp, fmt::format("Reading potential file {} with DATE: {}\n", filename, date)); } return new TextFileReader(filepath, filetype); }