Log PID on start

This commit is contained in:
Raul Ochoa 2015-08-24 12:45:21 +02:00
parent bf4844e664
commit 9ef96080a6

4
app.js
View File

@ -107,8 +107,8 @@ var version = require("./package").version;
ws.on('listening', function() {
console.log(
"Windshaft tileserver %s started on %s:%s (%s)",
version, global.environment.host, global.environment.port, ENV
"Windshaft tileserver %s started on %s:%s PID=%d (%s)",
version, global.environment.host, global.environment.port, process.pid, ENV
);
});