Elapsed seconds not shown correctly

pull/1359/head
Sergio Acereda 2017-07-22 23:30:36 +02:00
parent 5ce614be3b
commit 6429502fc5
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ public:
return; return;
} }
auto elapsedSeconds = std::chrono::system_clock::now() - regions[region]; std::chrono::duration<double> elapsedSeconds = std::chrono::system_clock::now() - regions[region];
DefaultLogger::get()->debug((format("END `"),region,"`, dt= ", elapsedSeconds.count()," s")); DefaultLogger::get()->debug((format("END `"),region,"`, dt= ", elapsedSeconds.count()," s"));
} }