StdLogger is the standard logger that distinguishes between info and error logs.
| 28 | // StdLogger is the standard logger that distinguishes between info and error |
| 29 | // logs. |
| 30 | type StdLogger struct { |
| 31 | stdLog *llog.Logger |
| 32 | errLog *llog.Logger |
| 33 | } |
| 34 | |
| 35 | // NewStdLogger create a Logger that uses out and err for informational and |
| 36 | // error messages. |
nothing calls this directly
no outgoing calls
no test coverage detected