Skip to content

Commit

Permalink
Include tiler version in startup log
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandro Santilli committed Mar 11, 2014
1 parent 667b911 commit 62cbb15
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions NEWS.md
@@ -1,6 +1,10 @@
1.9.1 -- 2014-MM-DD
-------------------

Enhancements:

- Include tiler version in startup log

1.9.0 -- 2014-03-10
-------------------

Expand Down
4 changes: 3 additions & 1 deletion app.js
Expand Up @@ -53,8 +53,10 @@ ws.maxConnections = global.environment.maxConnections || 128;

ws.listen(global.environment.port, global.environment.host);

var version = require("./package").version;

ws.on('listening', function() {
console.log("Windshaft tileserver started on "
console.log("Windshaft tileserver " + version + " started on "
+ global.environment.host + ':' + global.environment.port
+ " (" + ENV + ")");
});
Expand Down

0 comments on commit 62cbb15

Please sign in to comment.