440925 - NPE when using relative paths for --start-log-file

This commit is contained in:
Joakim Erdfelt 2014-10-29 16:25:55 -07:00
parent 149ed3a553
commit 7cbd3c0488
1 changed files with 1 additions and 0 deletions

View File

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