Skip to content

Commit

Permalink
Removed some console statememnts and updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
knsv committed May 10, 2021
1 parent ac837a7 commit 417428a
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mermaid",
"version": "8.9.2",
"version": "8.9.3",
"description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
"main": "dist/mermaid.core.js",
"keywords": [
Expand Down
1 change: 0 additions & 1 deletion src/diagrams/requirement/requirementRenderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@ export const drawReqs = (reqs, graph, svgNode) => {
Object.keys(reqs).forEach(reqName => {
let req = reqs[reqName];
reqName = elementString(reqName);
console.log('reqName: ', reqName);
log.info('Added new requirement: ', reqName);

const groupNode = svgNode.append('g').attr('id', reqName);
Expand Down
1 change: 0 additions & 1 deletion src/diagrams/user-journey/journeyRenderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ export const draw = function(text, id) {

drawActorLegend(diagram);
bounds.insert(0, 0, LEFT_MARGIN, Object.keys(actors).length * 50);
console.log(bounds);
drawTasks(diagram, tasks, 0);

const box = bounds.getBounds();
Expand Down
1 change: 0 additions & 1 deletion src/mermaidAPI.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ function parse(text) {
break;
case 'requirement':
case 'requirementDiagram':
console.log('RequirementDiagram');
log.debug('RequirementDiagram');
parser = requirementParser;
parser.parser.yy = requirementDb;
Expand Down

0 comments on commit 417428a

Please sign in to comment.