diff options
Diffstat (limited to 'examples/inspectls')
-rw-r--r-- | examples/inspectls/main.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/examples/inspectls/main.go b/examples/inspectls/main.go index 65c5229..5022888 100644 --- a/examples/inspectls/main.go +++ b/examples/inspectls/main.go @@ -13,8 +13,8 @@ import ( "strings" "tildegit.org/tjp/gus" - guslog "tildegit.org/tjp/gus/contrib/log" "tildegit.org/tjp/gus/gemini" + "tildegit.org/tjp/gus/logging" ) func main() { @@ -27,11 +27,13 @@ func main() { log.Fatal(err) } + _, infoLog, _, errLog := logging.DefaultLoggers() + // add stdout logging to the request handler - handler := guslog.Requests(os.Stdout, nil)(inspectHandler) + handler := logging.LogRequests(infoLog)(inspectHandler) // run the server - server, err := gemini.NewServer(context.Background(), tlsconf, "tcp4", ":1965", handler) + server, err := gemini.NewServer(context.Background(), errLog, tlsconf, "tcp4", ":1965", handler) if err != nil { log.Fatal(err) } |