Skip to content

Commit ff20e18

Browse files
Revert "replace fmt.Sprintf("...", ...) with slog.Info"
This reverts commit 89f74a7. Signed-off-by: Ramon Petgrave <[email protected]>
1 parent 5878167 commit ff20e18

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cli/experimental/service/main.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package main
33
import (
44
"fmt"
55
"log"
6-
"log/slog"
76
"net/http"
87
"time"
98

@@ -20,7 +19,7 @@ func main() {
2019
http.Handle("/", r)
2120

2221
address := ":8000"
23-
slog.Info(fmt.Sprintf("Starting HTTP server on %v ...\n", address))
22+
fmt.Printf("Starting HTTP server on %v ...\n", address)
2423
srv := &http.Server{
2524
Handler: r,
2625
Addr: address,

0 commit comments

Comments
 (0)