From bd13b2a9993826bb66797aa29619e8b0780f3a29 Mon Sep 17 00:00:00 2001 From: Rodrigo Gomes da Silva Date: Thu, 2 Feb 2017 23:35:10 -0200 Subject: [PATCH] removed console.log --- index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/index.js b/index.js index 749a5b0..15ccc5b 100644 --- a/index.js +++ b/index.js @@ -58,7 +58,6 @@ function save(vpns) { function startOpenvpn(options = []) { logger.info('Starting openvpn...'); const openvpn = `"${which.sync('openvpn')}"`; - console.log(['--config', `"${filePath}"`].concat(options)); const proc = spawn(openvpn, ['--config', `"${filePath}"`].concat(options), { shell: true }); proc.stdout.pipe(logger.stream); proc.stderr.on('data', data => logger.error(data.toString()));