Fixed the path to the log4j.properties file when setting the options

necessary to start the ATS on Windows. This allows the ATS logs to
start working again.
This commit is contained in:
Juan Carlos Luciani 2007-04-26 15:23:40 +00:00
parent d6a57d3d1e
commit bd7211dbe7

View File

@ -936,7 +936,7 @@ public class Configure
AtsConfigurator.invokeExternalCommand(commandArray6);
String[] commandArray7 = {
sExe, "//US//CasaAuthTokenService", "++JvmOptions", "\"-Dlog4j.configuration=file:" + installDir + "/etc/log4j.properties" + "\"", "--LogPath", AtsConfigurator.m_logFolderPath, "--LogPrefix", "AtsSvcInstall.log"
sExe, "//US//CasaAuthTokenService", "++JvmOptions", "\"-Dlog4j.configuration=file:" + installDir + "/etc/svc/log4j.properties" + "\"", "--LogPath", AtsConfigurator.m_logFolderPath, "--LogPrefix", "AtsSvcInstall.log"
};
AtsConfigurator.invokeExternalCommand(commandArray7);