From 377d40f411bee54cc45e513e53eea511372e5c6d Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Fri, 10 Oct 2008 10:27:13 -0500 Subject: CarpetIOASCII: Improve startup message --- Carpet/CarpetIOASCII/src/ioascii.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Carpet/CarpetIOASCII') diff --git a/Carpet/CarpetIOASCII/src/ioascii.cc b/Carpet/CarpetIOASCII/src/ioascii.cc index 0e3bfb4f4..17e944ff2 100644 --- a/Carpet/CarpetIOASCII/src/ioascii.cc +++ b/Carpet/CarpetIOASCII/src/ioascii.cc @@ -190,12 +190,12 @@ namespace CarpetIOASCII { if (not CCTK_Equals (verbose, "none")) { int count = 0; ostringstream msg; - msg << "Periodic " << outdim << "D AMR output requested for:" << eol; + msg << "Periodic " << outdim << "D AMR output requested for:"; for (int vi=0; vi< CCTK_NumVars(); ++vi) { if (requests.at(vi)) { ++count; char* const fullname = CCTK_FullName(vi); - msg << " " << fullname << eol; + msg << eol << " " << fullname; free (fullname); } } -- cgit v1.2.3