diff options
| author | Alon Levy <alon@pobox.com> | 2015-08-09 14:13:54 +0300 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-08-09 14:13:54 +0300 |
| commit | 70faba8199f4a9ac4b157cd4fb0c1107dbb6f81f (patch) | |
| tree | fa787b93427c03f401927aa1006abf925d9f8efa /src/client | |
| parent | 5e37e73923b9ca8a31dd90a776a9882960e6b3cc (diff) | |
client/view/graph_view: silence debug print
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/rz_api_backend.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/rz_api_backend.js b/src/client/rz_api_backend.js index bc8cd7b2..1c84f5e9 100644 --- a/src/client/rz_api_backend.js +++ b/src/client/rz_api_backend.js @@ -60,8 +60,7 @@ define(['util', 'model/core'], function(util, model_core) { var ret_data = xhr.data; util.assert(undefined == xhr.error); // assert we no longer return errors along with HTTP 200 status codes - console.log('ajax success: return value:'); - console.dir(ret_data); + console.log('ajax success: return value: ' + ret_data); if (on_success) { on_success(ret_data); }; |
