From d6a493dac6b831a82255735b677747715da79377 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20GOUIN?= Date: Wed, 19 Jun 2019 14:36:16 +0200 Subject: [PATCH] removed debug log --- src/config.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/config.js b/src/config.js index f0b1273..a768790 100644 --- a/src/config.js +++ b/src/config.js @@ -3,14 +3,12 @@ const fs = require('fs'); const merge = function (ref, src) { if (typeof ref !== typeof src) { - console.log(ref, src, ref); return ref; } else if (typeof ref === 'object') { const out = {}; Object.keys(ref).forEach(key => out[key] = merge(ref[key], src[key])); return out; } else { - console.log(ref, src, src); return src; } };