Skip to content

Commit

Permalink
frontend: remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyuyureka committed Nov 23, 2023
1 parent 0fcd6d7 commit 5f7cea0
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions frontend/src/resultsView.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,9 @@ const errorTemplate = (query, data) => html`
const processResults = (results) => {

const routeResults = results.filter(r => !!r.Route).map(r => r.Route);
console.log(results);
const dnsResults = results.filter(r => !!r.ReverseDns).map(r => r.ReverseDns);

console.log(dnsResults);
const dnsMap = Object.fromEntries(dnsResults.map(r => [r.nexthop, { nexthop_resolved: r.nexthop_resolved }]));
console.log(dnsMap);

// stage 1, combine pre- and post-policy adj-in tables
// start out with PostPolicy
Expand Down

0 comments on commit 5f7cea0

Please sign in to comment.