Remove debug log

This commit is contained in:
Matt Baer 2021-04-26 11:54:42 -04:00
parent 967ee9679c
commit 36455eea2b
1 changed files with 1 additions and 2 deletions

View File

@ -267,9 +267,8 @@ func Load(fname string) (*Config, error) {
return nil, err
}
d, err := idna.ToASCII(u.Hostname())
log.Error("Host: %s", uc.App.Host)
if err != nil {
log.Error("ToASCII: %s", err)
log.Error("idna.ToASCII for %s: %s", u.Hostname(), err)
return nil, err
}
uc.App.Host = u.Scheme + "://" + d