Skip to content

Commit

Permalink
fix: remove forgotten console.log 🙈
Browse files Browse the repository at this point in the history
  • Loading branch information
imcatwhocode committed Dec 18, 2024
1 parent ab0ec83 commit d67e2f7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/zonefile/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ export class Zonefile {
// But if one of leases is static, we record only static ones
for (const [mac, input] of index) {
const staticLeases = input.filter(lease => lease.type === LeaseType.Static)
console.log(staticLeases)
for (const lease of staticLeases.length ? staticLeases : input) {
this.records.push({
name: mac.toLowerCase().replaceAll(':', '-'),
Expand Down

0 comments on commit d67e2f7

Please sign in to comment.