Skip to content

Commit

Permalink
bugfix: ZENKO-818 sensitive config in debug log
Browse files Browse the repository at this point in the history
Do not display sensitive config containing secrets in debug logs from
management layer
  • Loading branch information
jonathan-gramain committed Jul 23, 2018
1 parent 42974fa commit 7b76712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/management/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function loadOverlayVersion(metadata, version, cb) {
return cb(err);
}
const convConf = convertOverlayFormat(val);
logger.debug('converted config', { convConf });
logger.debug('converted overlay config to newest format');
return cb(null, convConf);
});
}
Expand Down

0 comments on commit 7b76712

Please sign in to comment.