Fix documentation error and logging prefix for STDOUT

This commit is contained in:
Tony Blyler 2016-05-13 17:42:37 -04:00
parent a6dfb7e698
commit 4e5e70f752
No known key found for this signature in database
GPG key ID: 25C9D3A655D1A65C
2 changed files with 3 additions and 3 deletions
cmd/hoarder

View file

@ -14,7 +14,7 @@ func main() {
configPath := flag.String("config", "", "path to the config file")
flag.Parse()
logger := log.New(os.Stdout, "hoarder", log.LstdFlags)
logger := log.New(os.Stdout, "hoarder ", log.LstdFlags)
if *configPath == "" {
logger.Println("Missing config path")