mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 15:26:40 +00:00
this should avoid issues with the embedded client also attempting to use the same global logger
12 lines
301 B
Go
12 lines
301 B
Go
package util
|
|
|
|
func AddSyslogHook() {
|
|
// The syslog package is not available for Windows. This adapter is needed
|
|
// to handle windows build.
|
|
}
|
|
|
|
func AddSyslogHookToLogger(logger *log.Logger) {
|
|
// The syslog package is not available for Windows. This adapter is needed
|
|
// to handle windows build.
|
|
}
|