diff options
author | Bjørn Erik Pedersen <[email protected]> | 2020-10-21 11:17:48 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2020-10-22 09:09:29 +0200 |
commit | fdfa4a5fe62232f65f1dd8d6fe0c500374228788 (patch) | |
tree | b804e91506a7f3c58690c6fd774b28f95184d5dc /hugolib/content_map_page.go | |
parent | 8cbe2bbfad6aa4de267921e24e166d4addf47040 (diff) | |
download | hugo-fdfa4a5fe62232f65f1dd8d6fe0c500374228788.tar.gz hugo-fdfa4a5fe62232f65f1dd8d6fe0c500374228788.zip |
Allow getJSON errors to be ignored
This change is mostly motivated to get a more stable CI build (we're building the Hugo site there, with Instagram and Twitter shortcodes sometimes failing).
Fixes #7866
Diffstat (limited to 'hugolib/content_map_page.go')
-rw-r--r-- | hugolib/content_map_page.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hugolib/content_map_page.go b/hugolib/content_map_page.go index b2a8fda7e..e79228ba3 100644 --- a/hugolib/content_map_page.go +++ b/hugolib/content_map_page.go @@ -581,7 +581,7 @@ func (m *pageMap) attachPageToViews(s string, b *contentNode) { w := getParamToLower(b.p, viewName.plural+"_weight") weight, err := cast.ToIntE(w) if err != nil { - m.s.Log.ERROR.Printf("Unable to convert taxonomy weight %#v to int for %q", w, b.p.Path()) + m.s.Log.Errorf("Unable to convert taxonomy weight %#v to int for %q", w, b.p.Path()) // weight will equal zero, so let the flow continue } |