24 std::time_t tStart =
firstTS / 1e3;
25 std::string tStartStr = std::asctime(std::localtime(&tStart));
26 tStartStr.erase(tStartStr.length() - 1);
27 std::time_t tEnd =
lastTS / 1e3;
28 std::string tEndStr = std::asctime(std::localtime(&tEnd));
29 tEndStr.erase(tEndStr.length() - 1);
30 LOG(info) <<
"Raw time interval from " <<
firstTS <<
" to " <<
lastTS <<
". In local time:";
31 LOG(info) << tStartStr;
36 LOG(info) <<
"Number of points added: " <<
nPoints;