* Initializes the logging.
*
* @param debug {@code true} for also printing debug statements, {@code false} for only info and higher.
*/
static void initLogging(boolean debug) {
LogFactory.setLogCreator(new ConsoleLogCreator(debug));
LOG = LogFactory.getLog(RepeatableMain.class);
}