summaryrefslogtreecommitdiff
path: root/examples/cgi
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cgi')
-rw-r--r--examples/cgi/main.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/examples/cgi/main.go b/examples/cgi/main.go
index 3dfec29..6036454 100644
--- a/examples/cgi/main.go
+++ b/examples/cgi/main.go
@@ -8,8 +8,8 @@ import (
"syscall"
"tildegit.org/tjp/gus/contrib/cgi"
- guslog "tildegit.org/tjp/gus/contrib/log"
"tildegit.org/tjp/gus/gemini"
+ "tildegit.org/tjp/gus/logging"
)
func main() {
@@ -25,15 +25,17 @@ func main() {
// make use of a CGI request handler
cgiHandler := cgi.CGIDirectory("/cgi-bin", "./cgi-bin")
+ _, infoLog, _, errLog := logging.DefaultLoggers()
+
// add stdout logging to the request handler
- handler := guslog.Requests(os.Stdout, nil)(cgiHandler)
+ handler := logging.LogRequests(infoLog)(cgiHandler)
// set up signals to trigger graceful shutdown
ctx, stop := signal.NotifyContext(context.Background(), syscall.SIGINT, syscall.SIGHUP)
defer stop()
// run the server
- server, err := gemini.NewServer(ctx, tlsconf, "tcp4", ":1965", handler)
+ server, err := gemini.NewServer(ctx, errLog, tlsconf, "tcp4", ":1965", handler)
if err != nil {
log.Fatal(err)
}