From 3b4ee0fd6806f801d3bc4d2aab750592828341bd Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 9 Apr 2019 14:53:40 -0700 Subject: [PATCH] even less output Signed-off-by: Jeff Carr --- connect-to-wifi/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/connect-to-wifi/main.go b/connect-to-wifi/main.go index 28f48a4..1ab4807 100644 --- a/connect-to-wifi/main.go +++ b/connect-to-wifi/main.go @@ -3,8 +3,8 @@ package main // import "os" import "log" import "time" -/* import "fmt" +/* import "reflect" */ @@ -22,7 +22,7 @@ func dhclient() { shell.Run("dhclient wlan0") for { - log.Print("should check progress here") + fmt.Print(" should check progress here") time.Sleep(20000 * time.Millisecond) } }