hugolib: Don't use the global warning logger
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 17 Aug 2019 15:13:33 +0000 (17:13 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 17 Aug 2019 16:50:16 +0000 (18:50 +0200)
See #6238

hugolib/page.go

index f8f6741d21539042815a852af44c682218bdb355..f08e309d43470593acacb9a784c50c6c7e80e7b6 100644 (file)
@@ -177,7 +177,7 @@ func (p *pageState) Pages() page.Pages {
                case page.KindHome:
                        // See https://github.com/gohugoio/hugo/issues/6238
                        // Note: When making the change below, also remember RegularPages.
-                       helpers.DistinctWarnLog.Println(`In the next Hugo version (0.58.0) we will change how $home.Pages behaves. If you want to list all regular pages, replace .Pages or .Data.Pages with .Site.RegularPages in your home page template.`)
+                       p.s.DistinctWarningLog.Println(`In the next Hugo version (0.58.0) we will change how $home.Pages behaves. If you want to list all regular pages, replace .Pages or .Data.Pages with .Site.RegularPages in your home page template.`)
                        pages = p.s.RegularPages()
                case page.KindSection:
                        pages = p.getPagesAndSections()