mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
21 lines
290 B
Go
21 lines
290 B
Go
|
//+build windows
|
||
|
|
||
|
package log
|
||
|
|
||
|
import "github.com/inconshreveable/log15"
|
||
|
|
||
|
type SysLogHandler struct {
|
||
|
}
|
||
|
|
||
|
func NewSyslog() *SysLogHandler {
|
||
|
return &SysLogHandler{}
|
||
|
}
|
||
|
|
||
|
func (sw *SysLogHandler) Init() error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (sw *SysLogHandler) Log(r *log15.Record) error {
|
||
|
return nil
|
||
|
}
|