Fix deprecation of httpRoot

This commit is contained in:
Nick O'Leary
2021-04-26 14:43:06 +01:00
parent 62f2a552ea
commit b62e4f6662
3 changed files with 2 additions and 3 deletions

View File

@@ -182,7 +182,7 @@ function start() {
log.info(log._("runtime.paths.settings",{path:settings.settingsFile}));
}
if (settings.httpRoot !== undefined) {
log.warn(log._("server.deprecatedOption",{old:"httpRoot", new: "httpNodeRoot/httpAdminRoot"));
log.warn(log._("server.deprecatedOption",{old:"httpRoot", new: "httpNodeRoot/httpAdminRoot"}));
}
if (settings.httpStatic) {
log.info(log._("runtime.paths.httpStatic",{path:path.resolve(settings.httpStatic)}));