WindowsEventLog
windows event log implementation for go-micro meta logger.
Usage
Before the first use, it is necessary to initialize the registrar with administrator rights.
The NewLogger function tries to create an event source named src in the options (or by default), but this may not happen, so for proper initialization it is recommended to use the Init function, which returns an error.
func Init() {
l := windowseventlog.NewLogger(windowseventlog.WithSrc("test src"), logger.WithEid(1000))
err := l.Init()
if err != nil {
//smt
}
}
func Example() {
logger.DefaultLogger = windowseventlog.NewLogger(windowseventlog.WithSrc("test src"), logger.WithEid(1000))
logger.Infof(logger.InfoLevel, "testing: %s", "Infof")
}