package Scheme
type Viewer struct {
Title string
MessageNames []string
Sender []string
Events []LogEvent
}
//
// ....
//
//
// ....
//
type LogEvent struct {
LogLine string
LogLevel string // logwarn || logdebug || logerror || loginfo || logtalkative || logsecurity
AB string // loga || logb
}