remove extra debug code

This commit is contained in:
Dan Mills 2009-01-02 16:17:36 -08:00
parent 07caef3f67
commit 4cb774d408

View File

@ -269,10 +269,7 @@ SyncEngine.prototype = {
// Create a new record by querying the store, and add the engine metadata // Create a new record by querying the store, and add the engine metadata
_createRecord: function SyncEngine__createRecord(id) { _createRecord: function SyncEngine__createRecord(id) {
let record = this._store.createRecord(id); let record = this._store.createRecord(id);
this._log.debug("setting uri to " + this.engineURL + id);
record.uri = this.engineURL + id; record.uri = this.engineURL + id;
this._log.debug("uri set to " + record.uri);
this._log.debug("record id set to " + record.id);
record.encryption = this.cryptoMetaURL; record.encryption = this.cryptoMetaURL;
return record; return record;
}, },