1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-03-03 15:22:30 +02:00
Dmitry Titov 8dc9bf49a1
Windows event log plugin (#2180)
* add rmq message properties

* eventlog start

* start eventlog

* windows event logger

* readme

* readme

Co-authored-by: dtitov <dtitov@might24.ru>
2021-06-20 09:28:30 +01:00

904 B

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")

}