Skip to content

Commit

Permalink
feat(tiller): add source file to log entries
Browse files Browse the repository at this point in the history
  • Loading branch information
adamreese committed Nov 15, 2016
1 parent 915769b commit 8740d3e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cmd/tiller/tiller.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ package main // import "k8s.io/helm/cmd/tiller"

import (
"fmt"
"log"
"net"
"net/http"
"os"
Expand Down Expand Up @@ -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'")
Expand Down

0 comments on commit 8740d3e

Please sign in to comment.