Skip to content
This repository was archived by the owner on Jan 28, 2021. It is now read-only.

Commit 0109e1c

Browse files
author
Juanjo Alvarez
committed
Connection checking warning is now a warning + typo fix
1 parent 6082b9c commit 0109e1c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/sockstate/netstat_darwin.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
// elements that satisfy the accept function
1313
func tcpSocks(accept AcceptFn) ([]sockTabEntry, error) {
1414
// (juanjux) TODO: not implemented
15-
logrus.Info("Connection checking not implemented for Windows")
15+
logrus.Warn("Connection checking not implemented for Darwin")
1616
return nil, ErrSocketCheckNotImplemented.New()
1717
}
1818

internal/sockstate/netstat_windows.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
// elements that satisfy the accept function
1313
func tcpSocks(accept AcceptFn) ([]sockTabEntry, error) {
1414
// (juanjux) TODO: not implemented
15-
logrus.Info("Connection checking not implemented for Windows")
15+
logrus.Warn("Connection checking not implemented for Windows")
1616
return nil, ErrSocketCheckNotImplemented.New()
1717
}
1818

0 commit comments

Comments
 (0)