mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Add httpStatic log statement on start up
This commit is contained in:
parent
d4d87054c4
commit
5bdb9e972e
@ -155,6 +155,9 @@ function start() {
|
|||||||
if (settings.settingsFile) {
|
if (settings.settingsFile) {
|
||||||
log.info(log._("runtime.paths.settings",{path:settings.settingsFile}));
|
log.info(log._("runtime.paths.settings",{path:settings.settingsFile}));
|
||||||
}
|
}
|
||||||
|
if (settings.httpStatic) {
|
||||||
|
log.info(log._("runtime.paths.httpStatic",{path:path.resolve(settings.httpStatic)}));
|
||||||
|
}
|
||||||
redNodes.loadFlows().then(redNodes.startFlows);
|
redNodes.loadFlows().then(redNodes.startFlows);
|
||||||
started = true;
|
started = true;
|
||||||
}).otherwise(function(err) {
|
}).otherwise(function(err) {
|
||||||
|
@ -4,7 +4,8 @@
|
|||||||
"version": "__component__ version: __version__",
|
"version": "__component__ version: __version__",
|
||||||
"unsupported_version": "Unsupported version of __component__. Requires: __requires__ Found: __version__",
|
"unsupported_version": "Unsupported version of __component__. Requires: __requires__ Found: __version__",
|
||||||
"paths": {
|
"paths": {
|
||||||
"settings": "Settings file : __path__"
|
"settings": "Settings file : __path__",
|
||||||
|
"httpStatic": "HTTP Static : __path__"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user