mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 14:47:06 +00:00
12 lines
114 B
Go
12 lines
114 B
Go
package log
|
|
|
|
type Handler interface {
|
|
Handle(Record)
|
|
}
|
|
|
|
type Record struct {
|
|
Msg
|
|
Level Level
|
|
Names []string
|
|
}
|