From 5c026ec7230f491e3f3a126446cca4891abb0fcf Mon Sep 17 00:00:00 2001 From: Max Matveev Date: Sat, 6 Feb 2016 19:27:58 -0800 Subject: [PATCH] removed debug println --- host/rpi/onewirebus.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/host/rpi/onewirebus.go b/host/rpi/onewirebus.go index 420b9d1..3c5a8ad 100644 --- a/host/rpi/onewirebus.go +++ b/host/rpi/onewirebus.go @@ -3,13 +3,13 @@ package rpi import ( - "fmt" "os" "sync" "github.com/golang/glog" "github.com/kidoman/embd" "io/ioutil" + "fmt" ) type w1Bus struct { @@ -28,7 +28,6 @@ type w1Device struct { } func NewW1Bus(l byte) embd.W1Bus { - fmt.Println("new w1 bus") return &w1Bus{l: l, busMap: make(map[string]embd.W1Device)} }