cli: remove debug print

This commit is contained in:
Patrik Oldsberg
2020-11-09 10:32:25 +01:00
parent 7f95e40fbb
commit eff7b6e3ba
@@ -35,11 +35,9 @@ export default async (cmd: Command) => {
let secretConfigs = schema.process(appConfigs, {
visibilities: ['secret'],
});
secretConfigs = secretConfigs.map(entry => ({
context: entry.context,
data: cloneDeepWith(entry.data, value => {
console.log('DEBUG: value =', value);
if (typeof value !== 'object') {
return '<secret>';
}