diff --git a/lib/connectors/base-connector.js b/lib/connectors/base-connector.js index a3efc000..ae6871b2 100644 --- a/lib/connectors/base-connector.js +++ b/lib/connectors/base-connector.js @@ -31,7 +31,7 @@ function Connector(options) { EventEmitter.apply(this, arguments); this.options = options; - debug('created with options', options); + debug('created connector'); } /** diff --git a/lib/persisted-model.js b/lib/persisted-model.js index 964b03bf..da7333b3 100644 --- a/lib/persisted-model.js +++ b/lib/persisted-model.js @@ -1698,8 +1698,8 @@ module.exports = function(registry) { if (debug.enabled) { debug('rectifyOnSave %s -> ' + (id ? 'id %j' : '%s'), ctx.Model.modelName, id ? id : 'ALL'); - debug('context instance:%j currentInstance:%j where:%j data %j', - ctx.instance, ctx.currentInstance, ctx.where, ctx.data); + debug('context instance:%j currentInstance:%j where:%j', + ctx.instance, ctx.currentInstance, ctx.where); } if (id) {