public Logger() {
   try {
     LOG =
         new PrintWriter(
             String.format(
                 "scheduler_%s.log",
                 (new SimpleDateFormat("MM-dd-yyyy-hh:mm")).format(new Date())));
   } catch (FileNotFoundException e) {
     ErrorChecker.printExceptionToLog(e);
   }
 }