* New auditing API outputting to syslog via TLS * New config section for specifying remote syslog server IP, port, and cert. * Legacy audit API retained for access history feature
12 строки
151 B
Go
12 строки
151 B
Go
package logr
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/wiggin77/cfg"
|
|
)
|
|
|
|
func ConfigLogger(config *cfg.Config) error {
|
|
return fmt.Errorf("Not implemented yet")
|
|
}
|