From fbed4c056e648c6ee8d1a15b85317de15b69f6ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Thu, 22 Mar 2018 18:45:00 -0400 Subject: [PATCH] show env vars passed to setup --- install/web.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/web.js b/install/web.js index c5f18a6cb2..d25440b316 100644 --- a/install/web.js +++ b/install/web.js @@ -128,6 +128,9 @@ function install(req, res) { } } + winston.info('Starting setup process'); + winston.info(setupEnvVars); + var child = require('child_process').fork('app', ['--setup'], { env: setupEnvVars, });