Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oded leiba committed Jun 23, 2016
1 parent 92803e2 commit 436499b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/properties.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ module.exports = function (settingsDir) {
properties_default.ENV.type = environment
properties_default.JWT.jwtTokenSecret = process.env.JWTTOKENSECRET || properties_default.JWT && properties_default.JWT.jwtTokenSecret
properties_default.logentries.api_key = process.env.LOG_API_KEY || properties_default.logentries && properties_default.logentries.api_key
properties_default.logzio.token = process.env.LOGZIO_TOKEN || properties_default.logzio && properties_default.logzio.token
properties_default.logzio = properties_default.logzio || {}
properties_default.logzio.token = process.env.LOGZIO_TOKEN || properties_default.logzio.token
properties_default.logzio.type = process.env.LOGZIO_TYPE || properties_default.logzio.type
console.log('properties_default.logzio.token = ', properties_default.logzio.token)
console.log('properties_default.logzio.type = ', properties_default.logzio.type)
Expand Down

0 comments on commit 436499b

Please sign in to comment.