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

Commit a50c219

Browse files
authored
fix(config): extract LOG_MESSAGE_KEY properly (#456)
1 parent 22208b0 commit a50c219

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/environment.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const pollerIntervalMilliseconds = process.env.POLLER_INTERVAL_MILLISECONDS
2525

2626
const logLevel = process.env.LOG_LEVEL || 'info'
2727
const useHumanReadableLogLevels = 'USE_HUMAN_READABLE_LOG_LEVELS' in process.env
28-
const logMessageKey = 'LOG_MESSAGE_KEY' in process.env
28+
const logMessageKey = process.env.LOG_MESSAGE_KEY || 'msg'
2929

3030
const pollingDisabled = 'DISABLE_POLLING' in process.env
3131

0 commit comments

Comments
 (0)