Skip to content

Commit

Permalink
chore: Add config object to validation start debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
stevoland committed May 21, 2024
1 parent fc9bfee commit b01b9af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mergeDeep.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ class MergeDeep {

validateConfig (key, baseconfig) {
if (this.configvalidators[key]) {
this.log.debug(`MergeDeep calling configvalidator for key ${key} `)
this.log.debug(`MergeDeep calling configvalidator for key ${key} ${JSON.stringify(baseconfig)}`)
try {
const isValid = this.configvalidators[key].isValid(baseconfig, this.github)
if (!isValid) {
Expand Down

0 comments on commit b01b9af

Please sign in to comment.