Update error message about failed menus in config.toml
authorRheingoldRiver <18037011+RheingoldRiver@users.noreply.github.com>
Thu, 24 Feb 2022 10:14:32 +0000 (04:14 -0600)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 24 Feb 2022 22:04:06 +0000 (23:04 +0100)
hugolib/site.go

index 57821ee93c42212166f7f130b5e4de1c79ddc293..d78a4e10c9c6e98c348e73242527e83f09326592 100644 (file)
@@ -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)
                                }