@stemy/backend 2.8.2 → 2.8.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1355,9 +1355,11 @@
1355
1355
  }).replace(/\./gi, "_").replace(/^_/, "").toUpperCase();
1356
1356
  var envValue = process.env[envName];
1357
1357
  if (typeof envValue !== "undefined") {
1358
- return isFunction(param.resolver)
1358
+ var value = isFunction(param.resolver)
1359
1359
  ? param.resolver(envValue)
1360
1360
  : convertValue(envValue, getType(param.defaultValue));
1361
+ console.log("Processing param value", name, envName, envValue, value);
1362
+ return value;
1361
1363
  }
1362
1364
  return param.defaultValue;
1363
1365
  };