From 85e717feb74c9d1a15f9c23fb2d3ae15dcc3fb63 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 26c0c9af6..155c637f4 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