1 package at.ac.tuwien.lsdc;
3 import org.slf4j.Logger;
4 import org.slf4j.LoggerFactory;
6 public class JobGenerator {
7 private static final Logger log = LoggerFactory.getLogger(JobGenerator.class);
8 private static final String USAGE = "JobGenerator needs exactly 3 parameters: Szenario, count, targetFile";
10 public static void main(String[] args) throws Exception {
11 if (args.length != 3) {
12 throw new IllegalArgumentException(USAGE);
14 log.info("Generate CSV with...");