Fixed log4j configuration load.
This commit is contained in:
parent
094920c087
commit
408886c8b8
1 changed files with 3 additions and 2 deletions
|
@ -172,8 +172,9 @@ public final class AgiStatoolCLI
|
|||
else
|
||||
{
|
||||
// Apply -c parameter.
|
||||
logger.info("Applying configuration file found in [{}].", configurationFile.getAbsoluteFile());
|
||||
PropertyConfigurator.configure(configurationFile.getAbsolutePath());
|
||||
File log4jfile = new File(configurationFile.getParentFile(), "log4j.properties");
|
||||
logger.info("Applying configuration file found in [{}].", log4jfile.getAbsoluteFile());
|
||||
PropertyConfigurator.configure(log4jfile.getAbsolutePath());
|
||||
logger.info("Configuration log configuration done.");
|
||||
|
||||
switch (command)
|
||||
|
|
Loading…
Reference in a new issue