statoolinfosweb/src/fr/devinsy/statoolinfos/StatoolInfosLauncher.java

71 lines
2.1 KiB
Java
Raw Normal View History

2020-09-13 01:28:27 +02:00
/*
* Copyright (C) 2020 Christian Pierre MOMON <christian@momon.org>
*
* This file is part of StatoolInfos, simple service statistics tool.
*
* StatoolInfos is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* StatoolInfos is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with StatoolInfos. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.devinsy.statoolinfos;
import java.io.File;
import org.apache.log4j.BasicConfigurator;
import org.apache.log4j.ConsoleAppender;
import org.apache.log4j.EnhancedPatternLayout;
import org.apache.log4j.PropertyConfigurator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import fr.devinsy.statoolinfos.cli.StatoolInfosCLI;
/**
* The Class StatoolInfosLauncher.
*/
public final class StatoolInfosLauncher
{
2020-09-13 02:10:28 +02:00
private static Logger logger = LoggerFactory.getLogger(StatoolInfosLauncher.class);
2020-09-13 01:28:27 +02:00
2020-09-13 02:10:28 +02:00
/**
* Instantiates a new statool infos launcher.
*/
private StatoolInfosLauncher()
{
}
2020-09-13 01:28:27 +02:00
2020-09-13 02:10:28 +02:00
/**
* The main method.
*
* @param args
* the arguments
*/
public static void main(final String[] args)
{
// Configure log.
2020-09-19 02:37:52 +02:00
File loggerConfig = new File("log4j.properties");
2020-09-13 02:10:28 +02:00
if (loggerConfig.exists())
{
PropertyConfigurator.configure(loggerConfig.getAbsolutePath());
logger.info("Dedicated log configuration done.");
logger.info("Configuration file was found in [{}].", loggerConfig.getAbsoluteFile());
}
else
{
BasicConfigurator.configure(new ConsoleAppender(new EnhancedPatternLayout("%m%n")));
}
2020-09-13 01:28:27 +02:00
2020-09-13 02:10:28 +02:00
// Run.
StatoolInfosCLI.run(args);
}
2020-09-13 01:28:27 +02:00
}