better logging & time stamp feature
This commit is contained in:
parent
bc7489daf0
commit
653bd69131
Binary file not shown.
|
@ -107,6 +107,11 @@ public class ConfigDefinition {
|
|||
}
|
||||
|
||||
private static void processTextTemplate(String inputFileName, String outputFileName) throws IOException {
|
||||
System.out.println("Reading from " + inputFileName);
|
||||
System.out.println("Writing to " + outputFileName);
|
||||
|
||||
VariableRegistry.INSTANCE.put("generator_message", "Generated by ConfigDefinition utility on " + new Date());
|
||||
|
||||
File inputFile = new File(inputFileName);
|
||||
|
||||
File outputFile = new File(outputFileName);
|
||||
|
|
Loading…
Reference in New Issue