X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/92656b214ed120c631bc6adab3b35992939e2ced..66ee3f764dec18afadca0a7d6b260368907c5315:/services/keep-web/main.go diff --git a/services/keep-web/main.go b/services/keep-web/main.go index 938377b525..018b5a2e81 100644 --- a/services/keep-web/main.go +++ b/services/keep-web/main.go @@ -7,13 +7,13 @@ package main import ( "flag" "fmt" - "log" "os" "time" "git.curoverse.com/arvados.git/sdk/go/arvados" "git.curoverse.com/arvados.git/sdk/go/config" "github.com/coreos/go-systemd/daemon" + log "github.com/sirupsen/logrus" ) var ( @@ -65,6 +65,10 @@ func init() { if os.Getenv("ARVADOS_API_TOKEN") == "" { os.Setenv("ARVADOS_API_TOKEN", "xxx") } + + log.SetFormatter(&log.JSONFormatter{ + TimestampFormat: "2006-01-02T15:04:05.000000000Z07:00", + }) } func main() { @@ -94,8 +98,8 @@ func main() { // Print version information if requested if *getVersion { - fmt.Printf("Version: %s\n", version) - os.Exit(0) + fmt.Printf("keep-web %s\n", version) + return } if err := config.LoadFile(cfg, configPath); err != nil { @@ -115,7 +119,7 @@ func main() { log.Fatal(config.DumpAndExit(cfg)) } - log.Printf("keep-web %q started", version) + log.Printf("keep-web %s started", version) os.Setenv("ARVADOS_API_HOST", cfg.Client.APIHost) srv := &server{Config: cfg}