1
0
Fork 0

ui - removed console logs

This commit is contained in:
hkernbach 2017-06-06 19:05:22 +02:00
parent f0a9a07e8e
commit 3bb96b6bbb
5 changed files with 0 additions and 13 deletions

View File

@ -323,7 +323,6 @@
processData: false, processData: false,
success: function (data) { success: function (data) {
self.engine = data; self.engine = data;
console.log(self.engine);
self.createNewCollectionModal(data); self.createNewCollectionModal(data);
}, },
error: function () { error: function () {

View File

@ -22,7 +22,6 @@
success: function () { success: function () {
window.modalView.hide(); window.modalView.hide();
self.reload(); self.reload();
console.log(result);
arangoHelper.arangoNotification('Services', 'Service ' + result.name + ' installed.'); arangoHelper.arangoNotification('Services', 'Service ' + result.name + ' installed.');
} }
}); });

View File

@ -40,7 +40,6 @@
var buttons = []; var buttons = [];
// analyse figures in cluster // analyse figures in cluster
if (frontendConfig.isCluster) { if (frontendConfig.isCluster) {
console.log(figures);
if (figures.figures.alive.size === 0 && if (figures.figures.alive.size === 0 &&
figures.figures.alive.count === 0 && figures.figures.alive.count === 0 &&
figures.figures.datafiles.count === 0 && figures.figures.datafiles.count === 0 &&

View File

@ -45,14 +45,6 @@
success: function (data) { success: function (data) {
self.logTopics = data; self.logTopics = data;
/*
_.each(self.logTopics, function (topic, name) {
if (self.logLevels.indexOf(topic.toLowerCase()) === -1) {
self.logLevels.push(topic.toLowerCase());
console.log(topic);
}
});
*/
_.each(['fatal', 'error', 'warning', 'info', 'debug'], function (level) { _.each(['fatal', 'error', 'warning', 'info', 'debug'], function (level) {
self.logLevels.push(level); self.logLevels.push(level);
}); });
@ -112,7 +104,6 @@
}, },
logTopicCallbackFunction: function (options) { logTopicCallbackFunction: function (options) {
console.log(options);
this.logTopicOptions = options; this.logTopicOptions = options;
this.applyFilter(); this.applyFilter();
}, },

View File

@ -113,7 +113,6 @@
url: arangoHelper.databaseUrl('/_api/aql-builtin'), url: arangoHelper.databaseUrl('/_api/aql-builtin'),
contentType: 'application/json', contentType: 'application/json',
success: function (data) { success: function (data) {
console.log(data);
self.stringToArray(); self.stringToArray();
self.updateDatasets(); self.updateDatasets();
_.each(data.functions, function (val) { _.each(data.functions, function (val) {