From 249a761b81235024960b1604e32f2dbd4286061c Mon Sep 17 00:00:00 2001 From: Shirou WAKAYAMA Date: Wed, 16 Sep 2015 16:24:04 +0900 Subject: [PATCH] net[linux]: temporary enable error print. --- net/net_linux.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/net_linux.go b/net/net_linux.go index de0d65a..54971f9 100644 --- a/net/net_linux.go +++ b/net/net_linux.go @@ -3,6 +3,7 @@ package net import ( + "fmt" "strconv" "strings" @@ -134,7 +135,7 @@ func NetConnections(kind string) ([]NetConnectionStat, error) { } n, err := parseNetLine(rr) if err != nil { - // fmt.Println(err) // TODO: should debug print? + fmt.Println(err) // TODO: should debug print? continue }