From ab692e73dea3ddfe979c88ee236cc394e47e82f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Tue, 18 Apr 2017 18:47:37 +0200 Subject: [PATCH] hugolib: Log WARNING only on unknown /data files Fixes #3361 --- hugolib/datafiles_test.go | 9 --------- hugolib/site.go | 3 ++- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/hugolib/datafiles_test.go b/hugolib/datafiles_test.go index 3aac3201f..5beb59249 100644 --- a/hugolib/datafiles_test.go +++ b/hugolib/datafiles_test.go @@ -98,15 +98,6 @@ func TestDataDirMultipleSources(t *testing.T) { } -func TestDataDirUnknownFormat(t *testing.T) { - t.Parallel() - - sources := []source.ByteSource{ - {Name: filepath.FromSlash("data/test.roml"), Content: []byte("boo")}, - } - doTestDataDir(t, true, sources) -} - func doTestDataDir(t *testing.T, expected interface{}, sources []source.ByteSource, configKeyValues ...interface{}) { var ( cfg, fs = newTestCfg() diff --git a/hugolib/site.go b/hugolib/site.go index d8e40f039..3b7d47533 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -841,7 +841,8 @@ func (s *Site) loadData(sources []source.Input) (err error) { data, err := s.readData(r) if err != nil { - return fmt.Errorf("Failed to read data from %s: %s", filepath.Join(r.Path(), r.LogicalName()), err) + s.Log.WARN.Printf("Failed to read data from %s: %s", filepath.Join(r.Path(), r.LogicalName()), err) + continue } if data == nil {