mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 22:47:37 +03:00
refactor(log): use provided modName
This commit is contained in:
parent
8f30f559a1
commit
2e0162d7d2
1 changed files with 2 additions and 2 deletions
|
@ -69,9 +69,9 @@ type Endpoint struct {
|
|||
func New(modName string, addrs []string) (module.Module, error) {
|
||||
endp := &Endpoint{
|
||||
addrs: addrs,
|
||||
Log: log.Logger{Name: "imap"},
|
||||
Log: log.Logger{Name: modName},
|
||||
saslAuth: auth.SASLAuth{
|
||||
Log: log.Logger{Name: "imap/sasl"},
|
||||
Log: log.Logger{Name: modName + "/sasl"},
|
||||
},
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue