diff --git a/lib/webservice/router/priceplan.js b/lib/webservice/router/priceplan.js
index e6eaee3..6c14437 100644
--- a/lib/webservice/router/priceplan.js
+++ b/lib/webservice/router/priceplan.js
@@ -3,7 +3,8 @@ const bodyParser = require('body-parser');
 const logger = require('komodo-sdk/logger');
 const dbKomodo = require('../../db-komodo');
 
-const DEBUG = process.NODE_ENV !== 'production';
+const DEBUG = process.env.NODE_ENV !== 'production';
+logger.info(`PRODUCTION MODE: ${!DEBUG}`);
 
 const router = express.Router();
 module.exports = router;