@pioneer-platform/loggerdog
Advanced tools
Comparing version 8.1.19 to 8.1.20
@@ -64,3 +64,3 @@ "use strict"; | ||
}; | ||
var DEFAULT_LOG_LEVEL = process.env['DEFAULT_LOG_LEVEL'] || 'INFO'; | ||
var DEFAULT_LOG_LEVEL = typeof process !== 'undefined' ? (process.env['DEFAULT_LOG_LEVEL'] || 'INFO') : 'INFO'; | ||
function _extractContext(stack, depth) { | ||
@@ -67,0 +67,0 @@ try { |
{ | ||
"name": "@pioneer-platform/loggerdog", | ||
"version": "8.1.19", | ||
"version": "8.1.20", | ||
"main": "./lib/index.js", | ||
@@ -5,0 +5,0 @@ "types": "./lib/main.d.ts", |
@@ -56,3 +56,3 @@ /* | ||
const DEFAULT_LOG_LEVEL = process.env['DEFAULT_LOG_LEVEL'] || 'INFO' | ||
const DEFAULT_LOG_LEVEL = typeof process !== 'undefined' ? (process.env['DEFAULT_LOG_LEVEL'] || 'INFO') : 'INFO'; | ||
@@ -59,0 +59,0 @@ function _extractContext(stack: string, depth: number) { |
11704