From acf2eeb2d47fe9040cdd3f88051e096b3e487b3f Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Mon, 4 Aug 2014 22:50:56 -0700 Subject: [PATCH] remove redunant part of error message Change-Id: I87958658d5af5f4b52cdadbf0b9d0b3748bd1738 --- server/camlistored/camlistored.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/camlistored/camlistored.go b/server/camlistored/camlistored.go index 5c80eea57..4d5621885 100644 --- a/server/camlistored/camlistored.go +++ b/server/camlistored/camlistored.go @@ -390,7 +390,7 @@ func Main(up chan<- struct{}, down <-chan struct{}) { config, isNewConfig, err := loadConfig(*flagConfigFile) if err != nil { - exitf("Error loading config file %q: %v", *flagConfigFile, err) + exitf("Error loading config file: %v", err) } ws := webserver.New()