diff options
Diffstat (limited to 'config/templates.go')
-rw-r--r-- | config/templates.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/templates.go b/config/templates.go index 2f581e44..32d838fc 100644 --- a/config/templates.go +++ b/config/templates.go @@ -5,7 +5,7 @@ import ( "strings" "git.sr.ht/~rjarry/aerc/lib/templates" - "git.sr.ht/~rjarry/aerc/logging" + "git.sr.ht/~rjarry/aerc/log" "github.com/go-ini/ini" ) @@ -56,7 +56,7 @@ func (config *AercConfig) parseTemplates(file *ini.File) error { return err } - logging.Debugf("aerc.conf: [templates] %#v", config.Templates) + log.Debugf("aerc.conf: [templates] %#v", config.Templates) return nil } |