Print a warning when configured mapnik version doesn't match installed

This commit is contained in:
Sandro Santilli 2012-10-09 11:45:57 +02:00 committed by Luis Bosque
parent 65e4cf1510
commit 8e3c900580

View File

@ -21,6 +21,14 @@ module.exports = function(){
log_format: global.environment.log_format log_format: global.environment.log_format
}; };
// Be nice and warn if configured mapnik version
// is != instaled mapnik version
if ( mapnik.versions.mapnik != me.grainstore.mapnik_version ) {
console.warn("WARNING: detected mapnik version ("
+ mapnik.versions.mapnik + ") != configured mapnik version ("
+ me.grainstore.mapnik_version + ")");
}
// Set the cache chanel info to invalidate the cache on the frontend server // Set the cache chanel info to invalidate the cache on the frontend server
// //
// @param req The request object. // @param req The request object.