#1261 Removed calls to console.log

This commit is contained in:
Knut Sveidqvist
2020-02-21 09:50:04 +01:00
parent 3acff54837
commit 89c1853977
4 changed files with 0 additions and 12 deletions

View File

@@ -269,9 +269,6 @@ export const draw = function(text, id) {
logger.debug('Parsing failed');
}
console.log('Classes:', flowDb.getClasses());
console.log('Subgraphs:', flowDb.getSubGraphs());
// Fetch the default direction, use TD if none was found
let dir = flowDb.getDirection();
if (typeof dir === 'undefined') {
@@ -420,7 +417,6 @@ export const draw = function(text, id) {
te.attr('transform', `translate(${xPos + width / 2}, ${yPos + 14})`);
te.attr('id', id + 'Text');
console.log('Fixing subgraph', id, subG.id, subG.classes); // eslitn-disable-line
for (let j = 0; j < subG.classes.length; j++) {
clusterEl[0].classList.add(subG.classes[j]);
}