From 4d1aa9dbb9b0a89c6524d6e8028a0453d8af5a78 Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Mon, 25 Feb 2008 05:53:00 +0000 Subject: CarpetLib: Output all digits in error message Output all digit for the times in the error message indicating that there is an extrapolation in time. darcs-hash:20080225055300-dae7b-500b168cc5b5f9c57b31c54e7ee07114062dca51.gz --- Carpet/CarpetLib/src/gdata.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Carpet') diff --git a/Carpet/CarpetLib/src/gdata.cc b/Carpet/CarpetLib/src/gdata.cc index 4f8244d32..0988578d5 100644 --- a/Carpet/CarpetLib/src/gdata.cc +++ b/Carpet/CarpetLib/src/gdata.cc @@ -1,5 +1,6 @@ #include #include +#include #include #include @@ -255,7 +256,8 @@ find_source_timelevel (vector const & times, if (transport_operator != op_copy) { if (time < min_time - eps or time > max_time + eps) { ostringstream buf; - buf << "Internal error: extrapolation in time." + buf << setprecision (17) + << "Internal error: extrapolation in time." << " time=" << time << " times=" << times; CCTK_WARN (0, buf.str().c_str()); -- cgit v1.2.3