net[linux]: temporary enable error print.
This commit is contained in:
parent
8d21be591e
commit
249a761b81
|
@ -3,6 +3,7 @@
|
||||||
package net
|
package net
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
@ -134,7 +135,7 @@ func NetConnections(kind string) ([]NetConnectionStat, error) {
|
||||||
}
|
}
|
||||||
n, err := parseNetLine(rr)
|
n, err := parseNetLine(rr)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// fmt.Println(err) // TODO: should debug print?
|
fmt.Println(err) // TODO: should debug print?
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue