Skip to content
Snippets Groups Projects
Commit 5b392e44 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

*** empty log message ***

parent 67e50e3a
Branches
Tags
No related merge requests found
...@@ -59,9 +59,14 @@ int main(int argc, char *argv[]) ...@@ -59,9 +59,14 @@ int main(int argc, char *argv[])
// Non-interactive Gmsh // Non-interactive Gmsh
if(CTX.batch) { if(CTX.batch) {
Msg::Info("'%s' started on %s", cmdline.c_str(), currtime.c_str()); Msg::Info("Running '%s'", cmdline.c_str());
Msg::Info("Started on %s", currtime.c_str());
GmshBatch(); GmshBatch();
GmshFinalize(); GmshFinalize();
time(&now);
currtime = ctime(&now);
currtime[currtime.size() - 1] = '\0';
Msg::Info("Stopped on %s", currtime.c_str());
Msg::Exit(0); Msg::Exit(0);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment