hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit 95e72f5e8e4634fbbb2ea7ece2156487230ad1d4
parent 1c7b7b4ef293aa133e5b55f3ebb2d37d8839532f
Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date:   Sun, 28 Oct 2018 14:42:41 +0100

i18n: Avoid using the global logger

See #4414

Diffstat:
Mi18n/i18n.go | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/i18n/i18n.go b/i18n/i18n.go
@@ -19,7 +19,6 @@ import (
 	"github.com/gohugoio/hugo/helpers"
 
 	"github.com/nicksnyder/go-i18n/i18n/bundle"
-	jww "github.com/spf13/jwalterweatherman"
 )
 
 var (
@@ -62,7 +61,7 @@ func (t Translator) initFuncs(bndl *bundle.Bundle) {
 
 	defaultT, err := bndl.Tfunc(defaultContentLanguage)
 	if err != nil {
-		jww.WARN.Printf("No translation bundle found for default language %q", defaultContentLanguage)
+		t.logger.WARN.Printf("No translation bundle found for default language %q", defaultContentLanguage)
 	}
 
 	enableMissingTranslationPlaceholders := t.cfg.GetBool("enableMissingTranslationPlaceholders")
@@ -72,7 +71,7 @@ func (t Translator) initFuncs(bndl *bundle.Bundle) {
 		t.translateFuncs[currentLang] = func(translationID string, args ...interface{}) string {
 			tFunc, err := bndl.Tfunc(currentLang)
 			if err != nil {
-				jww.WARN.Printf("could not load translations for language %q (%s), will use default content language.\n", lang, err)
+				t.logger.WARN.Printf("could not load translations for language %q (%s), will use default content language.\n", lang, err)
 			}
 
 			translated := tFunc(translationID, args...)