From 31e0382a872a75c913048c78be3df12851ba8f1f Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Tue, 17 Nov 2020 15:21:53 -0800 Subject: [PATCH] Add error text to clarify config changes from #373 --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 8d4abbc19..e0cbfa2e9 100644 --- a/config/config.go +++ b/config/config.go @@ -116,7 +116,7 @@ func (c *config) load(filePath string) error { } if err := yaml.Unmarshal(yamlFile, c); err != nil { - log.Fatalf("Unmarshal: %v", err) + log.Fatalf("Error reading the config file.\nHave you recently updated your version of Owncast?\nIf so there may be changes to the config.\nPlease read the change log for your version at https://owncast.online/posts/\n%v", err) return err }