summaryrefslogtreecommitdiffstats
path: root/hugolib/site.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugolib/site.go')
-rw-r--r--hugolib/site.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/hugolib/site.go b/hugolib/site.go
index 57821ee93..d78a4e10c 100644
--- a/hugolib/site.go
+++ b/hugolib/site.go
@@ -1420,14 +1420,14 @@ func (s *Site) getMenusFromConfig() navigation.Menus {
for name, menu := range menus {
m, err := cast.ToSliceE(menu)
if err != nil {
- s.Log.Errorf("unable to process menus in site config\n")
+ s.Log.Errorf("menus in site config contain errors\n")
s.Log.Errorln(err)
} else {
handleErr := func(err error) {
if err == nil {
return
}
- s.Log.Errorf("unable to process menus in site config\n")
+ s.Log.Errorf("menus in site config contain errors\n")
s.Log.Errorln(err)
}