Add build time to flow startup banner

This commit is contained in:
Joakim Hove
2020-03-31 08:42:24 +02:00
parent 4a6814d6bc
commit c8524a139e
3 changed files with 12 additions and 0 deletions

View File

@@ -315,6 +315,7 @@ namespace Opm
ss << ", Memory size: " << std::fixed << std::setprecision (2) << mem_size << " MB) \n";
ss << "Operating system = " << arch.sysname << " " << arch.machine << " (Kernel: " << arch.release;
ss << ", " << arch.version << " )\n";
ss << "Build time = " << compileTimestamp() << "\n";
}
if (user) {
ss << "User = " << user << std::endl;