remove console.log

This commit is contained in:
ac360 2016-11-06 23:16:52 -08:00
parent 16aa2c4072
commit eb97845ad5

View File

@ -110,7 +110,6 @@ class Variables {
}
getValueFromSource(variableString) {
console.log(variableString, 'here1')
let valueToPopulate;
if (variableString.match(this.envRefSyntax)) {
valueToPopulate = this.getValueFromEnv(variableString);
@ -198,7 +197,6 @@ class Variables {
valueToPopulate = this.getDeepValue(deepProperties, valueToPopulate);
}
}
console.log(valueToPopulate)
return valueToPopulate;
}