Skip to content

Commit b8c60fe

Browse files
committed
Clean up debug logging in diffable.js
Signed-off-by: Kyle Harding <[email protected]>
1 parent 784fb19 commit b8c60fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/plugins/diffable.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ module.exports = class Diffable extends ErrorStash {
9090
const mergeDeep = new MergeDeep(this.log, this.github, ignorableFields)
9191
const compare = mergeDeep.compareDeep(existingRecords, filteredEntries)
9292
const results = { msg: 'Changes found', additions: compare.additions, modifications: compare.modifications, deletions: compare.deletions }
93-
this.log.debug(`Results of comparing ${this.constructor.name} diffable target ${JSON.stringify(existingRecords)} with source ${JSON.stringify(filteredEntries)} is ${results}`)
93+
this.log.debug(`Results of comparing ${this.constructor.name} diffable target ${JSON.stringify(existingRecords)} with source ${JSON.stringify(filteredEntries)} is ${JSON.stringify(results)}`)
9494
if (!compare.hasChanges) {
95-
this.log.debug(`There are no changes for ${this.constructor.name} for repo ${this.repo}. Skipping changes`)
95+
this.log.debug(`There are no changes for ${this.constructor.name} for repo ${this.repo.repo}. Skipping changes`)
9696
return Promise.resolve()
9797
} else {
9898
if (this.nop) {

0 commit comments

Comments
 (0)