Implemented new user registrations
This commit is contained in:
14
auth/log.go
Normal file
14
auth/log.go
Normal file
@ -0,0 +1,14 @@
|
||||
package auth
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
||||
"github.com/aerogo/log"
|
||||
)
|
||||
|
||||
var authLog = log.New()
|
||||
|
||||
func init() {
|
||||
authLog.AddOutput(os.Stdout)
|
||||
authLog.AddOutput(log.File("logs/auth.log"))
|
||||
}
|
Reference in New Issue
Block a user