Do not dump certs in the log files

This commit is contained in:
Girish Ramakrishnan
2017-05-19 14:39:08 -07:00
parent 7467907c09
commit 65cff35be6
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ function exec(tag, file, args, callback) {
callback = once(callback); // exit may or may not be called after an 'error'
debug(tag + ' execFile: %s %s', file, args.join(' '));
debug(tag + ' execFile: %s', file); // do not dump args as it might have sensitive info
var cp = child_process.spawn(file, args);
cp.stdout.on('data', function (data) {