From: Chirag Sukhala Date: Sun, 16 Aug 2020 21:49:53 +0000 (+0000) Subject: doc/articles/wiki: add missing log import to net/http tutorial X-Git-Tag: go1.16beta1~1343 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c810c6db101b53154b06f9ef1ff7455aaff16c36;p=gostls13.git doc/articles/wiki: add missing log import to net/http tutorial The log package is used with the net/http but was not in the import clause. Change-Id: Ic45b987633adf0ee15defd4d136b5d37027e22b0 GitHub-Last-Rev: e74aff53370569864b7ec8c18617a5d992d34bf2 GitHub-Pull-Request: golang/go#36674 Reviewed-on: https://go-review.googlesource.com/c/go/+/215618 Reviewed-by: Emmanuel Odeke --- diff --git a/doc/articles/wiki/index.html b/doc/articles/wiki/index.html index 4e3a5deab5..a74a58e317 100644 --- a/doc/articles/wiki/index.html +++ b/doc/articles/wiki/index.html @@ -257,6 +257,7 @@ To use the net/http package, it must be imported: import ( "fmt" "io/ioutil" + "log" "net/http" )