diff --git a/frontend/js/routers/router.js b/frontend/js/routers/router.js
index 686d407da9..2b60327284 100644
--- a/frontend/js/routers/router.js
+++ b/frontend/js/routers/router.js
@@ -35,7 +35,6 @@ $(document).ready(function() {
window.arangoLogsStore.fetch({
success: function () {
if (!window.logsView) {
- console.log("not existing");
}
window.logsView = new window.logsView({
collection: window.arangoLogsStore
@@ -127,7 +126,6 @@ $(document).ready(function() {
window.arangoLogsStore.fetch({
success: function () {
if (!window.logsView) {
- console.log("not exits");
}
window.logsView.render();
$('#logNav a[href="#all"]').tab('show');
diff --git a/frontend/js/views/collectionView.js b/frontend/js/views/collectionView.js
index 7658e8162a..49d3ba98b8 100644
--- a/frontend/js/views/collectionView.js
+++ b/frontend/js/views/collectionView.js
@@ -72,7 +72,6 @@ var collectionView = Backbone.View.extend({
else if (status === 'unloaded') {
var newname = $('#change-collection-name').val();
if (this.myCollection.name !== newname) {
- console.log("different name");
window.arangoCollectionsStore.renameCollection(collid, newname );
this.hideModal();
}
diff --git a/frontend/js/views/queryView.js b/frontend/js/views/queryView.js
index 348c82ac34..61c27a3a2a 100644
--- a/frontend/js/views/queryView.js
+++ b/frontend/js/views/queryView.js
@@ -18,7 +18,6 @@ var queryView = Backbone.View.extend({
return this;
},
submitQuery: function() {
- console.log("submit");
var self = this;
var data = {query:$('#queryInput').val()};
var formattedJSON;
diff --git a/frontend/js/views/shellView.js b/frontend/js/views/shellView.js
index 5745c19be2..413906117d 100644
--- a/frontend/js/views/shellView.js
+++ b/frontend/js/views/shellView.js
@@ -66,7 +66,6 @@ var shellView = Backbone.View.extend({
var client = "arangosh> " + escapeHTML(data) + "
";
$(varContent).append('' + client + '');
this.evaloutput(command);
- console.log(command);
$(varContent).animate({scrollTop:$(varContent)[0].scrollHeight}, 1);
$(varInput).val('');
return false;