use a defined logger

this should avoid issues with the embedded
client also attempting to use the same global logger
This commit is contained in:
Alisdair MacLeod
2026-01-30 16:31:32 +00:00
parent 5345d716ee
commit 3a6f364b03
9 changed files with 115 additions and 47 deletions

View File

@@ -4,3 +4,8 @@ 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.
}