From c85e703253d8bfa21ea48517791f8dc921d4fdd4 Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Thu, 30 Jul 2015 18:01:59 +0300 Subject: client: more specific logging for node position recording --- src/client/model/graph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/model/graph.js b/src/client/model/graph.js index f7affb93..5e54d228 100644 --- a/src/client/model/graph.js +++ b/src/client/model/graph.js @@ -674,6 +674,7 @@ function Graph(spec) { if (changes === 0) { return; } + console.log('sending ' + changes + ' nodes position for layout ' + layout_name); // commit all current nodes nodes__commit_attributes(function (node) { var d = {}; @@ -693,7 +694,6 @@ function Graph(spec) { }); }); var on_ajax_success = function() { - console.log('successfully committed x, y for current layout'); }; var on_ajax_error = function(){ console.log('error with commit nodes properties to server'); -- cgit v1.3.1