2021-10-05 21:36:57 +08:00
|
|
|
package middle_msg
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
2021-10-06 14:47:58 +08:00
|
|
|
var (
|
2021-10-09 21:54:26 +08:00
|
|
|
EventNameLog = "logcontext"
|
2021-10-06 14:47:58 +08:00
|
|
|
)
|
|
|
|
|
2021-10-05 21:36:57 +08:00
|
|
|
type LogContext struct {
|
|
|
|
Level string
|
|
|
|
Data time.Time
|
|
|
|
Msg string
|
|
|
|
Route string
|
|
|
|
}
|