summaryrefslogtreecommitdiff
path: root/src/client/rz_api_backend.js
diff options
context:
space:
mode:
authorLV-426 <lv-426@taproot.org.il>2015-04-09 02:19:46 +0300
committerLV-426 <lv-426@taproot.org.il>2015-04-09 02:19:46 +0300
commitae701b61a44b18a2d64ed8fb3c11cce2a14dde7f (patch)
tree3405aa884284a78634546d2404136e35bef934e4 /src/client/rz_api_backend.js
parent913b04022b3cd929f4b5fe4ec83f04821a428430 (diff)
rz_api_backend.js: fix misplaced quote in log message
Diffstat (limited to 'src/client/rz_api_backend.js')
-rw-r--r--src/client/rz_api_backend.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/rz_api_backend.js b/src/client/rz_api_backend.js
index fe974221..2a3ea6dd 100644
--- a/src/client/rz_api_backend.js
+++ b/src/client/rz_api_backend.js
@@ -25,7 +25,7 @@ define(['util', 'model/core'], function(util, model_core) {
function on_error_wrapper(xhr, text_status, err_thrown) {
// log wrap callback
var err_msg = xhr.responseJSON && xhr.responseJSON.error;
- console.error('ajax error: status: \'' + text_status + '\'', error msg: ' + err_msg);
+ console.error('ajax error: status: \'' + text_status + '\' error msg: ' + err_msg);
if (on_error && typeof (on_error) === "function") {
on_error(err_msg);
}