mirror of
https://github.com/volatiletech/authboss.git
synced 2024-12-04 10:24:52 +02:00
bd0d3c5f68
- Having the default logger set to nil was troublesome because some errors are hard to detect without a logger. This falls under "sane default" changes and so should be made.
21 lines
421 B
Go
21 lines
421 B
Go
package authboss
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
)
|
|
|
|
// DefaultLogger is a basic logger.
|
|
type DefaultLogger log.Logger
|
|
|
|
// NewDefaultLogger creates a logger to stdout.
|
|
func NewDefaultLogger() *DefaultLogger {
|
|
return ((*DefaultLogger)(log.New(os.Stdout, "", log.LstdFlags)))
|
|
}
|
|
|
|
// Write writes to the internal logger.
|
|
func (d *DefaultLogger) Write(b []byte) (int, error) {
|
|
((*log.Logger)(d)).Printf("%s", b)
|
|
return len(b), nil
|
|
}
|