Commit 8740d3eb authored by Adam Reese's avatar Adam Reese

feat(tiller): add source file to log entries

parent 915769b3
......@@ -18,6 +18,7 @@ package main // import "k8s.io/helm/cmd/tiller"
import (
"fmt"
"log"
"net"
"net/http"
"os"
......@@ -70,6 +71,8 @@ var rootCommand = &cobra.Command{
}
func main() {
log.SetFlags(log.Flags() | log.Lshortfile)
p := rootCommand.PersistentFlags()
p.StringVarP(&grpcAddr, "listen", "l", ":44134", "address:port to listen on")
p.StringVar(&store, "storage", storageConfigMap, "storage driver to use. One of 'configmap' or 'memory'")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment