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:
parent
54dcc72422
commit
1f5933f89b
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue