From 7dc1d6fb03588b36cab2f87dde67f6318e95b0af Mon Sep 17 00:00:00 2001 From: Chad Arimura Date: Wed, 18 Oct 2017 14:32:34 +0200 Subject: [PATCH] Update func.go (#435) --- examples/tutorial/hello/go/func.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/examples/tutorial/hello/go/func.go b/examples/tutorial/hello/go/func.go index 4f0ee2b2b..cad8bcdb8 100644 --- a/examples/tutorial/hello/go/func.go +++ b/examples/tutorial/hello/go/func.go @@ -18,10 +18,5 @@ func main() { mapB, _ := json.Marshal(mapD) fmt.Println(string(mapB)) - // TODO: move these lines to a test, this was for testing log output issues log.Println("---> stderr goes to the server logs.") - log.Println("---> LINE 2") - log.Println("---> LINE 3 with a break right here\nand LINE 4") - log.Printf("---> LINE 5 with a double line break\n\n") - log.Println("---> LINE 6") }