mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 21:27:35 +03:00
Move closing the default logger after printing configuration errors
This commit is contained in:
parent
4b1c4f932a
commit
c9c856ffb6
1 changed files with 2 additions and 2 deletions
4
maddy.go
4
maddy.go
|
@ -161,6 +161,8 @@ func Run() int {
|
|||
return 2
|
||||
}
|
||||
|
||||
defer log.DefaultLogger.Out.Close()
|
||||
|
||||
if err := moduleMain(cfg); err != nil {
|
||||
systemdStatusErr(err)
|
||||
log.Println(err)
|
||||
|
@ -271,8 +273,6 @@ func moduleMain(cfg []config.Node) error {
|
|||
return err
|
||||
}
|
||||
|
||||
defer log.DefaultLogger.Out.Close()
|
||||
|
||||
hooks.AddHook(hooks.EventLogRotate, reinitLogging)
|
||||
|
||||
endpoints, mods, err := RegisterModules(globals, modBlocks)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue