typos, culling, and alignment

This commit is contained in:
Jonathan Shook
2020-11-16 17:22:12 -06:00
parent 4d65dc625f
commit 52b029f8b8
6 changed files with 8 additions and 69 deletions

View File

@@ -14,21 +14,6 @@ import java.util.Arrays;
public class DocServerApp {
private static final Logger logger = LogManager.getLogger(DocServerApp.class);
// static {
// // defer to an extant logger context if it is there, otherwise
// // assume a local and docserver specific logging configuration
//
// LoggerContext context = (LoggerContext) LoggerFactory.getILoggerFactory();
// if (context.getLoggerList().size() == 1 && context.getLoggerList().get(0).getName().equals("ROOT")) {
// configureDocServerLogging(context);
// logger = LoggerFactory.getLogger(DocServerApp.class);
// logger.info("Configured logging system from logback-docsys.xml");
// } else {
// logger = LoggerFactory.getLogger(DocServerApp.class);
// logger.info("Configured logging within existing logging context.");
// }
// }
public static void main(String[] args) {
if (args.length > 0 && args[0].contains("help")) {
showHelp();