summaryrefslogtreecommitdiff
path: root/examples/gopher_fileserver/main.go
diff options
context:
space:
mode:
authortjpcc <tjp@ctrl-c.club>2023-10-09 08:58:31 -0600
committertjpcc <tjp@ctrl-c.club>2023-10-09 08:58:31 -0600
commit20be557b7bc3d7ada78411b7b279c9f7580d0bc7 (patch)
tree2a7f6640b0b389ad79fe18a8906642be493aaf60 /examples/gopher_fileserver/main.go
parentcedcf58ea7d729acb6ed1a9ab7aec1ae38aed102 (diff)
logging.Base()
Allow users to get access to the base logger *before* it is wrapped with the various levels. This provides a single override point to filter or redirect all logging.
Diffstat (limited to 'examples/gopher_fileserver/main.go')
-rw-r--r--examples/gopher_fileserver/main.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/gopher_fileserver/main.go b/examples/gopher_fileserver/main.go
index 1cb7495..9b8c33f 100644
--- a/examples/gopher_fileserver/main.go
+++ b/examples/gopher_fileserver/main.go
@@ -4,6 +4,7 @@ import (
"context"
"log"
+ "github.com/go-kit/log/level"
sr "tildegit.org/tjp/sliderule"
"tildegit.org/tjp/sliderule/contrib/cgi"
"tildegit.org/tjp/sliderule/contrib/fs"
@@ -19,10 +20,10 @@ func main() {
fs.GopherFileHandler(".", "", nil),
)
- _, infoLog, _, errLog := logging.DefaultLoggers()
- handler = logging.LogRequests(infoLog)(handler)
+ baseLog := logging.Base()
+ handler = logging.LogRequests(level.Info(baseLog))(handler)
- server, err := gopher.NewServer(context.Background(), "localhost", "tcp4", ":70", handler, errLog)
+ server, err := gopher.NewServer(context.Background(), "localhost", "tcp4", ":70", handler, baseLog)
if err != nil {
log.Fatal(err)
}