Skip to content

Commit

Permalink
fix(device): 🐛 remove spew
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuar committed Feb 16, 2024
1 parent 4894fef commit 8b81d77
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ go 1.22.0

require (
fyne.io/fyne/v2 v2.4.4
github.com/carlmjohnson/requests v0.23.5
github.com/cenkalti/backoff/v4 v4.2.1
github.com/eclipse/paho.mqtt.golang v1.4.3
github.com/go-playground/validator/v10 v10.18.0
Expand Down
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmV
github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8=
github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=
github.com/bketelsen/crypt v0.0.4/go.mod h1:aI6NrJ0pMGgvZKL1iVgXLnfIFJtfV+bKCoqOes/6LfM=
github.com/carlmjohnson/requests v0.23.5 h1:NPANcAofwwSuC6SIMwlgmHry2V3pLrSqRiSBKYbNHHA=
github.com/carlmjohnson/requests v0.23.5/go.mod h1:zG9P28thdRnN61aD7iECFhH5iGGKX2jIjKQD9kqYH+o=
github.com/cenkalti/backoff v2.2.1+incompatible h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4=
github.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM=
github.com/cenkalti/backoff/v4 v4.2.1 h1:y4OZtCnogmCPw98Zjyt5a6+QwPLGkiQsYW5oUqylYbM=
Expand Down
2 changes: 0 additions & 2 deletions internal/device/external_ip.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import (
"net"
"time"

"github.com/davecgh/go-spew/spew"
"github.com/go-resty/resty/v2"
"github.com/rs/zerolog/log"

Expand Down Expand Up @@ -129,7 +128,6 @@ func ExternalIPUpdater(ctx context.Context) chan sensor.Details {
updateExternalIP := func(_ time.Duration) {
for _, ver := range []int{4, 6} {
if ip := lookupExternalIPs(client, ver); ip != nil {
spew.Dump(ip)
sensorCh <- ip
}
}
Expand Down

0 comments on commit 8b81d77

Please sign in to comment.