Upgraded to latest aerogo/log

This commit is contained in:
2019-05-07 23:01:51 +09:00
parent 483622df09
commit 868ba2ba99
8 changed files with 55 additions and 42 deletions

View File

@ -9,6 +9,6 @@ import (
var authLog = log.New()
func init() {
authLog.AddOutput(os.Stdout)
authLog.AddOutput(log.File("logs/auth.log"))
authLog.AddWriter(os.Stdout)
authLog.AddWriter(log.File("logs/auth.log"))
}