From 87e83744170297b295261a58f9a8a9d0814f040f Mon Sep 17 00:00:00 2001 From: David Mehringer Date: Tue, 27 Jul 2021 04:14:16 -0400 Subject: [PATCH] CAS-13540 requirement for higher precision in observation date log msg --- coordinates/Coordinates/CoordinateSystem.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coordinates/Coordinates/CoordinateSystem.cc b/coordinates/Coordinates/CoordinateSystem.cc index 6e9891da15a..770c338d90d 100644 --- a/coordinates/Coordinates/CoordinateSystem.cc +++ b/coordinates/Coordinates/CoordinateSystem.cc @@ -3113,7 +3113,7 @@ Vector CoordinateSystem::list (LogIO& os, MEpoch defEpoch = ObsInfo::defaultObsDate(); if (epoch.getValue().getDay() != defEpoch.getValue().getDay()) { MVTime time = MVTime(epoch.getValue()); - os << "Date observation : " << time.string(MVTime::YMD) << endl; + os << "Date observation : " << time.string(MVTime::YMD, 12) << endl; } else { os << "Date observation : " << "UNKNOWN" << endl; }