From 8524be7240a746218d700f9397c84a6d96d3d449 Mon Sep 17 00:00:00 2001 From: nozaq Date: Sun, 27 Mar 2022 21:44:09 +0900 Subject: [PATCH] Fix a typo --- cmd/podinfo/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/podinfo/main.go b/cmd/podinfo/main.go index e3e4b12..bff6649 100644 --- a/cmd/podinfo/main.go +++ b/cmd/podinfo/main.go @@ -29,7 +29,7 @@ func main() { fs.Int("port-metrics", 0, "metrics port") fs.Int("grpc-port", 0, "gRPC port") fs.String("grpc-service-name", "podinfo", "gPRC service name") - fs.String("level", "info", "log level debug, info, warn, error, flat or panic") + fs.String("level", "info", "log level debug, info, warn, error, fatal or panic") fs.StringSlice("backend-url", []string{}, "backend service URL") fs.Duration("http-client-timeout", 2*time.Minute, "client timeout duration") fs.Duration("http-server-timeout", 30*time.Second, "server read and write timeout duration")