mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 12:50:55 +00:00
give each of the adapter a neme
This commit is contained in:
parent
2e6a23743b
commit
03840f3fe8
@ -113,5 +113,5 @@ func (c *connWriter) needToConnectOnMsg() bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
Register("conn", NewConn)
|
Register(AdapterConn, NewConn)
|
||||||
}
|
}
|
||||||
|
@ -97,5 +97,5 @@ func (c *consoleWriter) Flush() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
Register("console", NewConsole)
|
Register(AdapterConsole, NewConsole)
|
||||||
}
|
}
|
||||||
|
@ -76,5 +76,5 @@ func (el *esLogger) Flush() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
logs.Register("es", NewES)
|
logs.Register(logs.AdaterEs, NewES)
|
||||||
}
|
}
|
||||||
|
@ -282,5 +282,5 @@ func (w *fileLogWriter) Flush() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
Register("file", newFileWriter)
|
Register(AdapterFile, newFileWriter)
|
||||||
}
|
}
|
||||||
|
@ -112,5 +112,5 @@ func newFilesWriter() Logger {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
Register("multifile", newFilesWriter)
|
Register(AdapterMultiFile, newFilesWriter)
|
||||||
}
|
}
|
||||||
|
@ -156,5 +156,5 @@ func (s *SMTPWriter) Destroy() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
Register("smtp", newSMTPWriter)
|
Register(AdapterMail, newSMTPWriter)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user