We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f41673 commit 8152746Copy full SHA for 8152746
src/server/host.js
@@ -39,8 +39,9 @@ export function staticHost() {
39
app.use("/static", express.static(path));
40
let current_ip = getLocalIpAddress();
41
app.listen(port, () => {
42
+ SQLog.info(`Hosting directory ${path}`, true);
43
SQLog.info(
- `Server is ready to host files from http://${current_ip}:${port}/static${path}, query any static file in the browser to see the response`,
44
+ `Server is ready to host files from http://${current_ip}:${port}/static/, query any static file in the browser to see the response`,
45
true
46
);
47
});
0 commit comments