Support passing sys properties variable for the path to the logback configuration file.

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@3092 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Hugues Malphettes 2011-05-09 03:33:16 +00:00
parent 54dcc72422
commit 1f5933f89b
1 changed files with 5 additions and 1 deletions

View File

@ -207,7 +207,11 @@ public class FrameworkLauncherExtended extends FrameworkLauncher
System.setProperty("logback.configurationFile",etcLogback.getAbsolutePath());
}
}
System.err.println("syserr: logback.configurationFile=" + System.getProperty("logback.configurationFile"));
else
{
logback = resolveSystemProperty(logback);
}
// System.err.println("syserr: logback.configurationFile=" + System.getProperty("logback.configurationFile"));
System.out.println("sysout: logback.configurationFile=" + System.getProperty("logback.configurationFile"));
}
return props;