Skip to content
This repository has been archived by the owner on Jul 26, 2022. It is now read-only.

Commit

Permalink
fix(config): extract LOG_MESSAGE_KEY properly (#456)
Browse files Browse the repository at this point in the history
  • Loading branch information
JacopoDaeli authored Jul 27, 2020
1 parent 22208b0 commit a50c219
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const pollerIntervalMilliseconds = process.env.POLLER_INTERVAL_MILLISECONDS

const logLevel = process.env.LOG_LEVEL || 'info'
const useHumanReadableLogLevels = 'USE_HUMAN_READABLE_LOG_LEVELS' in process.env
const logMessageKey = 'LOG_MESSAGE_KEY' in process.env
const logMessageKey = process.env.LOG_MESSAGE_KEY || 'msg'

const pollingDisabled = 'DISABLE_POLLING' in process.env

Expand Down

0 comments on commit a50c219

Please sign in to comment.