Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'daemon.go')
-rw-r--r--daemon.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon.go b/daemon.go
index cc9d3217..9142642c 100644
--- a/daemon.go
+++ b/daemon.go
@@ -34,7 +34,7 @@ func daemonMain() {
// read the configuration from the pipe "ExtraFiles"
var config appConfig
if err := json.NewDecoder(os.NewFile(3, "options")).Decode(&config); err != nil {
- fatal(err)
+ fatal(err, "could not decode app config")
}
runApp(config)
os.Exit(0)