Skip to content
Snippets Groups Projects
Commit e0e7c0be authored by istkabra's avatar istkabra
Browse files

* Timestamp is now easier to read

parent c7d23681
No related branches found
No related tags found
No related merge requests found
......@@ -152,7 +152,7 @@ public class Config {
// Output settings
jobName = this.properties.getProperty("jobName");
if(jobName.equals("")) {
SimpleDateFormat formatter = new SimpleDateFormat("ddMMyyyyHHmmss");
SimpleDateFormat formatter = new SimpleDateFormat("dd_MM_yyyy_HH-mm-ss");
Date date = new Date();
jobName = formatter.format(date);
}
......
......@@ -49,7 +49,7 @@
# log = Generate tab seperated file with a bit of information about each generation
# generation = print a short overview about each generation to stdout
visualizerType = log,generation,image,video
# Name of the job, filenames will be based on this name. If left empty a timestamp is used TODO: leaving it empty should use timestamp
# Name of the job, filenames will be based on this name. If left empty a timestamp is used
jobName =
# Directory for the image sequence
imageSequenceDirectory = visualization/series
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment