432192 - jetty-start / Allow JETTY_LOGS use for start-log-file
+ Internal initialization & validation of start-log-file is done via BaseHome.getPath(String) to allow the path to be anywhere on the filesystem, not just under ${jetty.base}
This commit is contained in:
parent
646d85a68b
commit
7790ba9657
|
@ -113,7 +113,7 @@ public class StartLog
|
|||
|
||||
if (logFileName != null)
|
||||
{
|
||||
Path logfile = baseHome.getBasePath(logFileName);
|
||||
Path logfile = baseHome.getPath(logFileName);
|
||||
initLogFile(logfile);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue