aboutsummaryrefslogtreecommitdiffstats
path: root/config/accounts.go
diff options
context:
space:
mode:
Diffstat (limited to 'config/accounts.go')
-rw-r--r--config/accounts.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/accounts.go b/config/accounts.go
index b33bdf09..61f0e282 100644
--- a/config/accounts.go
+++ b/config/accounts.go
@@ -13,7 +13,7 @@ import (
"strings"
"time"
- "git.sr.ht/~rjarry/aerc/logging"
+ "git.sr.ht/~rjarry/aerc/log"
"github.com/go-ini/ini"
)
@@ -112,7 +112,7 @@ func (config *AercConfig) parseAccounts(root string, accts []string) error {
}
}
- logging.Debugf("Parsing accounts configuration from %s", filename)
+ log.Debugf("Parsing accounts configuration from %s", filename)
file, err := ini.Load(filename)
if err != nil {
@@ -216,7 +216,7 @@ func (config *AercConfig) parseAccounts(root string, accts []string) error {
return fmt.Errorf("Invalid outgoing credentials for %s: %w", _sec, err)
}
- logging.Debugf("accounts.conf: [%s] from = %s", account.Name, account.From)
+ log.Debugf("accounts.conf: [%s] from = %s", account.Name, account.From)
config.Accounts = append(config.Accounts, account)
}
if len(accts) > 0 {