1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 09:15:38 +01:00

Remove blank line from log

This commit is contained in:
Michael Marshall 2019-08-02 15:59:18 +01:00
parent cad76827b0
commit ed23f6be20

View File

@ -240,7 +240,7 @@ int main(int argc, char* argv[])
// Log what file we're processing and when we started
const std::chrono::system_clock::time_point start{ std::chrono::system_clock::now() };
std::time_t now = std::chrono::system_clock::to_time_t( start );
std::cout << "Start " << parFilename << " " << std::ctime( &now ) << std::endl;
std::cout << "Start " << parFilename << " " << std::ctime( &now );
// parse parameter file
Contractor::ContractorPar par;