Skip to content

Commit

Permalink
remove console.log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoisaiah committed Oct 30, 2023
1 parent 89b0bee commit 1291929
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
18 changes: 9 additions & 9 deletions docs/dist/main.js

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions docs/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ const series = {
};

function pushToCharts(prop, lib, value) {
console.log(prop, lib, value);
const i = series[prop].findIndex((obj) => obj.name === lib);
if (i === -1) {
series[prop].push({
Expand All @@ -37,8 +36,6 @@ benchmarks.forEach((item) => {
categories.push(benchName);
libraries.push(library);

console.log(libraries);

if (!benchName.includes('Disabled')) {
pushToCharts('executionTime', library, item.NsPerOp);
pushToCharts('memoryUsage', library, item.Mem.BytesPerOp);
Expand Down

0 comments on commit 1291929

Please sign in to comment.