/** Will output the console jsdoc creation logs to log4j. */
 public static void setConsoleOuput() {
   Log4jOutputStream l4jos = new Log4jOutputStream(LOGGER, Level.INFO);
   PrintStream ps = new PrintStream(l4jos, true);
   Main.setOut(ps);
 }