From 813445a868bc78b24ffbdedbd2439c514a7d14e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rk=20S=C3=A1gi-Kaz=C3=A1r?= Date: Sat, 26 Mar 2022 18:02:44 +0100 Subject: [PATCH] use the new log package in examples (#34) Signed-off-by: Mark Sagi-Kazar --- _src/examples/stringsvc.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_src/examples/stringsvc.md b/_src/examples/stringsvc.md index 29a1725..b43484d 100644 --- a/_src/examples/stringsvc.md +++ b/_src/examples/stringsvc.md @@ -263,7 +263,7 @@ You will need to remove `log.Fatal` from the bottom of the `main.go` file. ```go import ( - "github.com/go-kit/kit/log" + "github.com/go-kit/log" ) ``` @@ -346,7 +346,7 @@ And wire it in. import ( "os" - "github.com/go-kit/kit/log" + "github.com/go-kit/log" httptransport "github.com/go-kit/kit/transport/http" )