From f655bcf9a83f0ed97847d93163c1ff3cbc5c2978 Mon Sep 17 00:00:00 2001 From: jasonkneen Date: Fri, 12 May 2017 06:58:20 +0100 Subject: [PATCH] log fixes --- reste.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reste.js b/reste.js index 2cab5db..4a007f9 100644 --- a/reste.js +++ b/reste.js @@ -453,7 +453,7 @@ var main = function() { // Intercept sync to handle collections / models Backbone.sync = function(method, model, options) { - log("Backbone.sync: " + method + model._type); + log("Backbone.sync: " + method + " " + model._type); var modelConfig = reste.modelConfig[model._type]; var body, onError;