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:
Joakim Erdfelt 2014-06-06 12:33:57 -07:00
parent 646d85a68b
commit 7790ba9657
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ public class StartLog
if (logFileName != null)
{
Path logfile = baseHome.getBasePath(logFileName);
Path logfile = baseHome.getPath(logFileName);
initLogFile(logfile);
}
}