Skip to content

Commit

Permalink
Merge pull request #1119 from dmehring/CAS-13540
Browse files Browse the repository at this point in the history
CAS-13540 requirement for higher precision in observation date log msg, made microsec precision
  • Loading branch information
tammojan committed Jul 27, 2021
2 parents d79f9f8 + 87e8374 commit 376d5fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coordinates/Coordinates/CoordinateSystem.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3113,7 +3113,7 @@ Vector<String> 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;
}
Expand Down

0 comments on commit 376d5fd

Please sign in to comment.